pub struct FillOutField<Name, Value>(pub Name, pub Value);Expand description
Provides a field upon struct creation. Renders as Name: Value
Tuple Fields§
§0: Name§1: ValueTrait Implementations§
Source§impl<Name: Clone, Value: Clone> Clone for FillOutField<Name, Value>
impl<Name: Clone, Value: Clone> Clone for FillOutField<Name, Value>
Source§fn clone(&self) -> FillOutField<Name, Value>
fn clone(&self) -> FillOutField<Name, Value>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<Name, Value> Freeze for FillOutField<Name, Value>
impl<Name, Value> RefUnwindSafe for FillOutField<Name, Value>where
Name: RefUnwindSafe,
Value: RefUnwindSafe,
impl<Name, Value> Send for FillOutField<Name, Value>
impl<Name, Value> Sync for FillOutField<Name, Value>
impl<Name, Value> Unpin for FillOutField<Name, Value>
impl<Name, Value> UnwindSafe for FillOutField<Name, Value>where
Name: UnwindSafe,
Value: 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