pub trait IntoValue {
type Value;
// Required method
fn into_value(self) -> Self::Value;
}Expand description
Function response output.
Required Associated Types§
Required Methods§
Sourcefn into_value(self) -> Self::Value
fn into_value(self) -> Self::Value
Unwrap the function response output.