pub struct ReplicationDiffEntry {
pub object: String,
pub version_id: Option<String>,
pub size_bytes: u64,
pub delete_marker: bool,
pub replication_status: String,
pub last_modified: Option<Timestamp>,
pub extra: BTreeMap<String, Value>,
}Expand description
One pending or failed object version returned by a replication diff.
Fields§
§object: String§version_id: Option<String>§size_bytes: u64§delete_marker: bool§replication_status: String§last_modified: Option<Timestamp>§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for ReplicationDiffEntry
impl Clone for ReplicationDiffEntry
Source§fn clone(&self) -> ReplicationDiffEntry
fn clone(&self) -> ReplicationDiffEntry
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 ReplicationDiffEntry
impl Debug for ReplicationDiffEntry
Source§impl<'de> Deserialize<'de> for ReplicationDiffEntry
impl<'de> Deserialize<'de> for ReplicationDiffEntry
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 ReplicationDiffEntry
impl PartialEq for ReplicationDiffEntry
Source§impl Serialize for ReplicationDiffEntry
impl Serialize for ReplicationDiffEntry
impl StructuralPartialEq for ReplicationDiffEntry
Auto Trait Implementations§
impl Freeze for ReplicationDiffEntry
impl RefUnwindSafe for ReplicationDiffEntry
impl Send for ReplicationDiffEntry
impl Sync for ReplicationDiffEntry
impl Unpin for ReplicationDiffEntry
impl UnsafeUnpin for ReplicationDiffEntry
impl UnwindSafe for ReplicationDiffEntry
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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