IntoExtResult

Trait IntoExtResult 

Source
pub trait IntoExtResult {
    // Required method
    fn to_ext_result(&self) -> Result<Value, Value>;
}
Expand description

Convert a type to a successful or failed extension result

Required Methods§

Source

fn to_ext_result(&self) -> Result<Value, Value>

Convert a type to a successful or failed extension result

Implementations on Foreign Types§

Source§

impl IntoExtResult for Result<Value, Value>

Source§

impl<T, E> IntoExtResult for Result<T, E>
where T: IntoArma, E: IntoArma,

Implementors§