Struct lens_rs::optics::_box[][src]

pub struct _box<Optic>(pub Optic);

Trait Implementations

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

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

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

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

impl<Ls, T> Lens<Box<T, Global>> for _box<Ls> where
    Ls: Lens<T>, 
[src]

impl<T: ?Sized, Ls> LensMut<Box<T, Global>> for _box<Ls> where
    Ls: LensMut<<Box<T> as Deref>::Target>, 
[src]

impl<T: ?Sized, Ls> LensRef<Box<T, Global>> for _box<Ls> where
    Ls: LensRef<<Box<T> as Deref>::Target>, 
[src]

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

impl<Pm, T> Prism<Box<T, Global>> for _box<Pm> where
    Pm: Prism<T>, 
[src]

impl<T: ?Sized, Pm> PrismMut<Box<T, Global>> for _box<Pm> where
    Pm: PrismMut<<Box<T> as Deref>::Target>, 
[src]

impl<T: ?Sized, Pm> PrismRef<Box<T, Global>> for _box<Pm> where
    Pm: PrismRef<<Box<T> as Deref>::Target>, 
[src]

impl<Rv, T> Review<Box<T, Global>> for _box<Rv> where
    Rv: Review<T>, 
[src]

type From = Rv::From

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

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

impl<Tr, T> Traversal<Box<T, Global>> for _box<Tr> where
    Tr: Traversal<T>, 
[src]

impl<T: ?Sized, Tr> TraversalMut<Box<T, Global>> for _box<Tr> where
    Tr: TraversalMut<<Box<T> as Deref>::Target>, 
[src]

impl<T: ?Sized, Tr> TraversalRef<Box<T, Global>> for _box<Tr> where
    Tr: TraversalRef<<Box<T> as Deref>::Target>, 
[src]

type To = Tr::To

Auto Trait Implementations

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

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

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

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

impl<Optic> UnwindSafe for _box<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.