Trait rusting::Rust [] [src]

pub trait Rust<T, F> {
    fn rust(self, _: F) -> T;
}

Required Methods

Implementations on Foreign Types

impl<T, E, F> Rust<T, F> for Result<T, E> where
    E: Error,
    F: Fn(E), 
[src]

[src]

impl<T, F> Rust<T, F> for Option<T> where
    F: Fn(), 
[src]

[src]

Implementors