Struct lens_rs::optics::_mapped[][src]

pub struct _mapped<Optic>(pub Optic);

Trait Implementations

impl<Optic: Clone> Clone for _mapped<Optic>[src]

impl<Optic: Copy> Copy for _mapped<Optic>[src]

impl<Optic: Debug> Debug for _mapped<Optic>[src]

impl<Optic: Eq> Eq for _mapped<Optic>[src]

impl<Optic: PartialEq> PartialEq<_mapped<Optic>> for _mapped<Optic>[src]

impl<Optic> StructuralEq for _mapped<Optic>[src]

impl<Optic> StructuralPartialEq for _mapped<Optic>[src]

impl<Tr, T> Traversal<LinkedList<T>> for _mapped<Tr> where
    Tr: Traversal<<LinkedList<T> as IntoIterator>::Item>, 
[src]

impl<Tr, T> Traversal<Vec<T, Global>> for _mapped<Tr> where
    Tr: Traversal<<Vec<T> as IntoIterator>::Item>, 
[src]

impl<Tr, T> Traversal<VecDeque<T>> for _mapped<Tr> where
    Tr: Traversal<<VecDeque<T> as IntoIterator>::Item>, 
[src]

impl<Tr, T> TraversalMut<LinkedList<T>> for _mapped<Tr> where
    Tr: TraversalMut<<LinkedList<T> as IntoIterator>::Item>, 
[src]

impl<Tr, T> TraversalMut<Vec<T, Global>> for _mapped<Tr> where
    Tr: TraversalMut<<Vec<T> as IntoIterator>::Item>, 
[src]

impl<Tr, T> TraversalMut<VecDeque<T>> for _mapped<Tr> where
    Tr: TraversalMut<<VecDeque<T> as IntoIterator>::Item>, 
[src]

impl<Tr, T> TraversalRef<LinkedList<T>> for _mapped<Tr> where
    Tr: TraversalRef<<LinkedList<T> as IntoIterator>::Item>, 
[src]

type To = Tr::To

impl<Tr, T> TraversalRef<Vec<T, Global>> for _mapped<Tr> where
    Tr: TraversalRef<<Vec<T> as IntoIterator>::Item>, 
[src]

type To = Tr::To

impl<Tr, T> TraversalRef<VecDeque<T>> for _mapped<Tr> where
    Tr: TraversalRef<<VecDeque<T> as IntoIterator>::Item>, 
[src]

type To = Tr::To

Auto Trait Implementations

impl<Optic> RefUnwindSafe for _mapped<Optic> where
    Optic: RefUnwindSafe

impl<Optic> Send for _mapped<Optic> where
    Optic: Send

impl<Optic> Sync for _mapped<Optic> where
    Optic: Sync

impl<Optic> Unpin for _mapped<Optic> where
    Optic: Unpin

impl<Optic> UnwindSafe for _mapped<Optic> where
    Optic: 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> 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.