Skip to main content

IntoResultArgWrap

Trait IntoResultArgWrap 

Source
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§

Source

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".

Implementations on Foreign Types§

Source§

impl IntoResultArgWrap<Result<ArgWrap, Error>> for Vec<Token>

Implementors§