pub struct GenerationCommit {
pub record: GenerationRecord,
pub checksum: u64,
pub commit_marker: u64,
}Expand description
GenerationCommit
Protected commit metadata for a generation.
Fields§
§record: GenerationRecordCommitted generation record.
checksum: u64Protected commit checksum supplied by the physical format.
commit_marker: u64Physical commit marker supplied by the physical format.
Trait Implementations§
Source§impl Clone for GenerationCommit
impl Clone for GenerationCommit
Source§fn clone(&self) -> GenerationCommit
fn clone(&self) -> GenerationCommit
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 GenerationCommit
impl Debug for GenerationCommit
Source§impl<'de> Deserialize<'de> for GenerationCommit
impl<'de> Deserialize<'de> for GenerationCommit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GenerationCommit
impl PartialEq for GenerationCommit
Source§fn eq(&self, other: &GenerationCommit) -> bool
fn eq(&self, other: &GenerationCommit) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GenerationCommit
impl Serialize for GenerationCommit
impl Eq for GenerationCommit
impl StructuralPartialEq for GenerationCommit
Auto Trait Implementations§
impl Freeze for GenerationCommit
impl RefUnwindSafe for GenerationCommit
impl Send for GenerationCommit
impl Sync for GenerationCommit
impl Unpin for GenerationCommit
impl UnsafeUnpin for GenerationCommit
impl UnwindSafe for GenerationCommit
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