pub struct BootstrapCommit {
pub ledger: AllocationLedger,
pub validated: ValidatedAllocations,
}Expand description
BootstrapCommit
Result of a successful generic allocation bootstrap commit.
Fields§
§ledger: AllocationLedgerLedger recovered after the protected generation commit.
validated: ValidatedAllocationsValidated allocation declarations tied to the committed generation.
Trait Implementations§
Source§impl Clone for BootstrapCommit
impl Clone for BootstrapCommit
Source§fn clone(&self) -> BootstrapCommit
fn clone(&self) -> BootstrapCommit
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 moreSource§impl Debug for BootstrapCommit
impl Debug for BootstrapCommit
Source§impl PartialEq for BootstrapCommit
impl PartialEq for BootstrapCommit
Source§fn eq(&self, other: &BootstrapCommit) -> bool
fn eq(&self, other: &BootstrapCommit) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BootstrapCommit
impl StructuralPartialEq for BootstrapCommit
Auto Trait Implementations§
impl Freeze for BootstrapCommit
impl RefUnwindSafe for BootstrapCommit
impl Send for BootstrapCommit
impl Sync for BootstrapCommit
impl Unpin for BootstrapCommit
impl UnsafeUnpin for BootstrapCommit
impl UnwindSafe for BootstrapCommit
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