pub trait IntoResultArgWrap<T>: Sized {
// Required method
fn into_result_argwrap(self) -> Result<ArgWrap>;
}Expand description
Create a Result<ArgWrap> from any concrete type that Gullet may have a reader for.
Used in auto-casting the data fetched by Parameter readers
Required Methods§
Sourcefn into_result_argwrap(self) -> Result<ArgWrap>
fn into_result_argwrap(self) -> Result<ArgWrap>
performs the conversion
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".