pub struct Assign { /* private fields */ }
Expand description
An assignment operator assigns a value to its left operand based on the value of its right operand.
Assignment operator (=
), assigns the value of its right operand to its left operand.
More information:
Implementations§
Trait Implementations§
Source§impl Executable for Assign
impl Executable for Assign
Source§impl Trace for Assign
impl Trace for Assign
Source§fn finalize_glue(&self)
fn finalize_glue(&self)
Runs Finalize::finalize() on this object and all
contained subobjects
impl StructuralPartialEq for Assign
Auto Trait Implementations§
impl Freeze for Assign
impl RefUnwindSafe for Assign
impl !Send for Assign
impl !Sync for Assign
impl Unpin for Assign
impl UnwindSafe for Assign
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