[][src]Struct fnmutant::FnMutant

pub struct FnMutant<In, Extra, Out, F: for<'a> Fn(In, Extra) -> Out> {
    pub f: F,
    // some fields omitted
}

Fields

f: F

Implementations

impl<In, Extra, Out, F: for<'a> Fn(In, Extra) -> Out> FnMutant<In, Extra, Out, F>[src]

pub fn new(f: F) -> Self[src]

Auto Trait Implementations

impl<In, Extra, Out, F> RefUnwindSafe for FnMutant<In, Extra, Out, F> where
    Extra: RefUnwindSafe,
    F: RefUnwindSafe,
    In: RefUnwindSafe,
    Out: RefUnwindSafe

impl<In, Extra, Out, F> Send for FnMutant<In, Extra, Out, F> where
    Extra: Send,
    F: Send,
    In: Send,
    Out: Send

impl<In, Extra, Out, F> Sync for FnMutant<In, Extra, Out, F> where
    Extra: Sync,
    F: Sync,
    In: Sync,
    Out: Sync

impl<In, Extra, Out, F> Unpin for FnMutant<In, Extra, Out, F> where
    Extra: Unpin,
    F: Unpin,
    In: Unpin,
    Out: Unpin

impl<In, Extra, Out, F> UnwindSafe for FnMutant<In, Extra, Out, F> where
    Extra: UnwindSafe,
    F: UnwindSafe,
    In: UnwindSafe,
    Out: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.