pub struct SupersessionTarget {
pub superseded_id: RecordId,
pub superseded_recorded_time: DateTime<Utc>,
}Expand description
Reference to the record that was superseded by a supersession event.
Fields§
§superseded_id: RecordIdID of the record that was superseded.
superseded_recorded_time: DateTime<Utc>Recorded time of the superseded record.
Trait Implementations§
Source§impl Clone for SupersessionTarget
impl Clone for SupersessionTarget
Source§fn clone(&self) -> SupersessionTarget
fn clone(&self) -> SupersessionTarget
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 SupersessionTarget
impl Debug for SupersessionTarget
Source§impl<'de> Deserialize<'de> for SupersessionTarget
impl<'de> Deserialize<'de> for SupersessionTarget
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 SupersessionTarget
impl PartialEq for SupersessionTarget
Source§fn eq(&self, other: &SupersessionTarget) -> bool
fn eq(&self, other: &SupersessionTarget) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SupersessionTarget
impl Serialize for SupersessionTarget
impl Eq for SupersessionTarget
impl StructuralPartialEq for SupersessionTarget
Auto Trait Implementations§
impl Freeze for SupersessionTarget
impl RefUnwindSafe for SupersessionTarget
impl Send for SupersessionTarget
impl Sync for SupersessionTarget
impl Unpin for SupersessionTarget
impl UnsafeUnpin for SupersessionTarget
impl UnwindSafe for SupersessionTarget
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