(
instance_res: Result<Instance, errors::J4RsError>,
)
| 297 | type Error = errors::J4RsError; |
| 298 | |
| 299 | fn try_from( |
| 300 | instance_res: Result<Instance, errors::J4RsError>, |
| 301 | ) -> errors::Result<InvocationArg> { |
| 302 | Ok(InvocationArg::from(instance_res?)) |
| 303 | } |
| 304 | } |
| 305 | |
| 306 | impl<'a> TryFrom<Null<'a>> for InvocationArg { |
nothing calls this directly
no test coverage detected