pub enum MutateMode {
Init,
JustWrite,
WriteAndRead,
}
Variants
Init
JustWrite
Example: x = y
WriteAndRead
Example: x += y
Trait Implementations
sourceimpl Clone for MutateMode
impl Clone for MutateMode
sourcefn clone(&self) -> MutateMode
fn clone(&self) -> MutateMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for MutateMode
impl Debug for MutateMode
sourceimpl PartialEq<MutateMode> for MutateMode
impl PartialEq<MutateMode> for MutateMode
sourcefn eq(&self, other: &MutateMode) -> bool
fn eq(&self, other: &MutateMode) -> bool
impl Copy for MutateMode
impl StructuralPartialEq for MutateMode
Auto Trait Implementations
impl RefUnwindSafe for MutateMode
impl Send for MutateMode
impl Sync for MutateMode
impl Unpin for MutateMode
impl UnwindSafe for MutateMode
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Init
: 0 bytesJustWrite
: 0 bytesWriteAndRead
: 0 bytes