pub struct StoredCapabilitySnapshot {
pub seq: u64,
pub snapshot: CapabilitySnapshot,
}Expand description
A capability snapshot with the source database sequence used for cluster sync.
Fields§
§seq: u64§snapshot: CapabilitySnapshotTrait Implementations§
Source§impl Clone for StoredCapabilitySnapshot
impl Clone for StoredCapabilitySnapshot
Source§fn clone(&self) -> StoredCapabilitySnapshot
fn clone(&self) -> StoredCapabilitySnapshot
Returns a duplicate of the value. Read more
1.0.0 · 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 StoredCapabilitySnapshot
impl Debug for StoredCapabilitySnapshot
Source§impl<'de> Deserialize<'de> for StoredCapabilitySnapshot
impl<'de> Deserialize<'de> for StoredCapabilitySnapshot
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
Auto Trait Implementations§
impl Freeze for StoredCapabilitySnapshot
impl RefUnwindSafe for StoredCapabilitySnapshot
impl Send for StoredCapabilitySnapshot
impl Sync for StoredCapabilitySnapshot
impl Unpin for StoredCapabilitySnapshot
impl UnsafeUnpin for StoredCapabilitySnapshot
impl UnwindSafe for StoredCapabilitySnapshot
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