pub struct SnapshotCapture {
pub created_at: String,
pub source_lineage: Option<String>,
pub source_checkpoint: Option<String>,
pub consistency: SnapshotConsistency,
}Expand description
Immutable capture provenance.
Fields§
§created_at: StringNormalized RFC 3339 capture time.
source_lineage: Option<String>Stable source lineage when known.
source_checkpoint: Option<String>Source checkpoint ID when applicable.
consistency: SnapshotConsistencyCapture consistency.
Trait Implementations§
Source§impl Clone for SnapshotCapture
impl Clone for SnapshotCapture
Source§fn clone(&self) -> SnapshotCapture
fn clone(&self) -> SnapshotCapture
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 SnapshotCapture
impl Debug for SnapshotCapture
Source§impl<'de> Deserialize<'de> for SnapshotCapture
impl<'de> Deserialize<'de> for SnapshotCapture
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SnapshotCapture, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SnapshotCapture, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SnapshotCapture
Source§impl PartialEq for SnapshotCapture
impl PartialEq for SnapshotCapture
Source§impl Serialize for SnapshotCapture
impl Serialize for SnapshotCapture
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SnapshotCapture
Auto Trait Implementations§
impl Freeze for SnapshotCapture
impl RefUnwindSafe for SnapshotCapture
impl Send for SnapshotCapture
impl Sync for SnapshotCapture
impl Unpin for SnapshotCapture
impl UnsafeUnpin for SnapshotCapture
impl UnwindSafe for SnapshotCapture
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