pub struct Composed<L1, L2, B> { /* private fields */ }Expand description
Composed lens: outer ∘ inner.
First uses outer to access an intermediate value, then inner to
access the final target within it.
Trait Implementations§
Auto Trait Implementations§
impl<L1, L2, B> Freeze for Composed<L1, L2, B>
impl<L1, L2, B> RefUnwindSafe for Composed<L1, L2, B>
impl<L1, L2, B> Send for Composed<L1, L2, B>
impl<L1, L2, B> Sync for Composed<L1, L2, B>
impl<L1, L2, B> Unpin for Composed<L1, L2, B>
impl<L1, L2, B> UnsafeUnpin for Composed<L1, L2, B>where
L1: UnsafeUnpin,
L2: UnsafeUnpin,
impl<L1, L2, B> UnwindSafe for Composed<L1, L2, B>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more