[][src]Struct indented_blocks::view::MapViewFn

pub struct MapViewFn<F1, F2> { /* fields omitted */ }

Trait Implementations

impl<F1: Clone, F2: Clone> Clone for MapViewFn<F1, F2>[src]

impl<F1: Copy, F2: Copy> Copy for MapViewFn<F1, F2>[src]

impl<S, F1, F2, O> ViewFn<S> for MapViewFn<F1, F2> where
    F1: ViewFn<S>,
    F2: Fn(F1::Output) -> O, 
[src]

type Output = O

Auto Trait Implementations

impl<F1, F2> Send for MapViewFn<F1, F2> where
    F1: Send,
    F2: Send

impl<F1, F2> Sync for MapViewFn<F1, F2> where
    F1: Sync,
    F2: Sync

impl<F1, F2> Unpin for MapViewFn<F1, F2> where
    F1: Unpin,
    F2: Unpin

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<S, F, O> ViewFn<S> for F where
    F: Fn(S) -> O, 
[src]

type Output = O