Enum common_types::account_diff::Diff
source · [−]pub enum Diff<T> {
Same,
Born(T),
Changed(T, T),
Died(T),
}
Expand description
Diff type for specifying a change (or not).
Variants
Same
Both sides are the same.
Born(T)
Left (pre, source) side doesn’t include value, right side (post, destination) does.
Changed(T, T)
Both sides include data; it chaged value between them.
Died(T)
Left (pre, source) side does include value, right side (post, destination) does not.
Implementations
sourceimpl<T> Diff<T>
impl<T> Diff<T>
Trait Implementations
impl<T: Eq> Eq for Diff<T>
impl<T> StructuralEq for Diff<T>
impl<T> StructuralPartialEq for Diff<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Diff<T> where
T: RefUnwindSafe,
impl<T> Send for Diff<T> where
T: Send,
impl<T> Sync for Diff<T> where
T: Sync,
impl<T> Unpin for Diff<T> where
T: Unpin,
impl<T> UnwindSafe for Diff<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more