pub struct Field<Get, GetMut> { /* private fields */ }Expand description
Lens accessing a member of some type using accessor functions
See also the lens macro.
let lens = druid::lens::Field::new(|x: &Vec<u32>| &x[42], |x| &mut x[42]);Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<Get, GetMut> Freeze for Field<Get, GetMut>
impl<Get, GetMut> RefUnwindSafe for Field<Get, GetMut>where
Get: RefUnwindSafe,
GetMut: RefUnwindSafe,
impl<Get, GetMut> Send for Field<Get, GetMut>
impl<Get, GetMut> Sync for Field<Get, GetMut>
impl<Get, GetMut> Unpin for Field<Get, GetMut>
impl<Get, GetMut> UnwindSafe for Field<Get, GetMut>where
Get: UnwindSafe,
GetMut: UnwindSafe,
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<A, B, T> LensExt<A, B> for T
impl<A, B, T> LensExt<A, B> for T
Source§fn index<I>(self, index: I) -> Then<Self, Index<I>, B>
fn index<I>(self, index: I) -> Then<Self, Index<I>, B>
Access an index in a container Read more
Source§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
Source§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.