pub struct AdjustmentRecord {
pub adjustment: Adjustment,
pub at_operation: u64,
}Expand description
A record stored in the adjustment history.
Fields§
§adjustment: AdjustmentThe adjustment that was made.
at_operation: u64Cumulative operation count at the time of this adjustment.
Trait Implementations§
Source§impl Clone for AdjustmentRecord
impl Clone for AdjustmentRecord
Source§fn clone(&self) -> AdjustmentRecord
fn clone(&self) -> AdjustmentRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Freeze for AdjustmentRecord
impl RefUnwindSafe for AdjustmentRecord
impl Send for AdjustmentRecord
impl Sync for AdjustmentRecord
impl Unpin for AdjustmentRecord
impl UnsafeUnpin for AdjustmentRecord
impl UnwindSafe for AdjustmentRecord
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