Trait IntoClosureReturnValue

pub trait IntoClosureReturnValue {
    // Required method
    fn into_closure_return_value(self) -> Option<Value>;
}

Required Methods§

Implementations on Foreign Types§

§

impl IntoClosureReturnValue for ()

Implementors§

§

impl<T> IntoClosureReturnValue for T
where T: Into<Value>,