Struct lens_rs_generator::_box[][src]

pub struct _box<Optic>(pub Optic);

to create Box, Rc or Arc pointers, implemented Review

assert_eq!(Review::review(optics!(_box), 0), Box::new(0));
assert_eq!(Review::review(optics!(_box), 0), Rc::new(0));
assert_eq!(Review::review(optics!(_box), 0), Arc::new(0));

or to visit the data in Box, implemented Lens

assert_eq!(Box::new(0).view(optic!(_box)), 0);

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<Optic: PartialEq> PartialEq<_box<Optic>> for _box<Optic>[src]

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

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

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.