pub struct AuditCursor {
pub occurred_at: DateTime<Utc>,
pub event_id: Uuid,
}Expand description
Stable ledger position independent of a physical table, file or segment.
Fields§
§occurred_at: DateTime<Utc>§event_id: UuidTrait Implementations§
Source§impl Clone for AuditCursor
impl Clone for AuditCursor
Source§fn clone(&self) -> AuditCursor
fn clone(&self) -> AuditCursor
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 moreimpl Copy for AuditCursor
Source§impl Debug for AuditCursor
impl Debug for AuditCursor
Source§impl<'de> Deserialize<'de> for AuditCursor
impl<'de> Deserialize<'de> for AuditCursor
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
impl Eq for AuditCursor
Source§impl From<&AuditRecordV2> for AuditCursor
impl From<&AuditRecordV2> for AuditCursor
Source§fn from(record: &AuditRecordV2) -> Self
fn from(record: &AuditRecordV2) -> Self
Converts to this type from the input type.
Source§impl Ord for AuditCursor
impl Ord for AuditCursor
Source§fn cmp(&self, other: &AuditCursor) -> Ordering
fn cmp(&self, other: &AuditCursor) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AuditCursor
impl PartialEq for AuditCursor
Source§impl PartialOrd for AuditCursor
impl PartialOrd for AuditCursor
Source§impl Serialize for AuditCursor
impl Serialize for AuditCursor
impl StructuralPartialEq for AuditCursor
Auto Trait Implementations§
impl Freeze for AuditCursor
impl RefUnwindSafe for AuditCursor
impl Send for AuditCursor
impl Sync for AuditCursor
impl Unpin for AuditCursor
impl UnsafeUnpin for AuditCursor
impl UnwindSafe for AuditCursor
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