[][src]Struct myopic::lens::lens_box::ComposedLens

pub struct ComposedLens<D, A, B> {
    pub lhs: Box<dyn Optical<Input = D, Output = A>>,
    pub rhs: Box<dyn Optical<Input = A, Output = B>>,
}

Fields

lhs: Box<dyn Optical<Input = D, Output = A>>rhs: Box<dyn Optical<Input = A, Output = B>>

Methods

impl<D, A, B> ComposedLens<D, A, B>[src]

pub fn new(
    l1: Box<dyn Optical<Input = D, Output = A>>,
    l2: Box<dyn Optical<Input = A, Output = B>>
) -> Self
[src]

Trait Implementations

impl<D, A, B> Lensable for ComposedLens<D, A, B>[src]

type Input = D

type Output = B

impl<D, A, B> Getter for ComposedLens<D, A, B>[src]

impl<D, A, B> Optical for ComposedLens<D, A, B>[src]

impl<D, A, B> Setter for ComposedLens<D, A, B>[src]

Auto Trait Implementations

impl<D, A, B> !Send for ComposedLens<D, A, B>

impl<D, A, B> !Sync for ComposedLens<D, A, B>

impl<D, A, B> Unpin for ComposedLens<D, A, B>

impl<D, A, B> !UnwindSafe for ComposedLens<D, A, B>

impl<D, A, B> !RefUnwindSafe for ComposedLens<D, A, B>

Blanket Implementations

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.

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

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

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