pub struct InteractionPageKey {
pub updated_at: DateTime<Utc>,
pub interaction_id: String,
}Expand description
Stable key identifying one HITL record’s position in updated-time ordering.
Fields§
§updated_at: DateTime<Utc>Last update time of the interaction at the page boundary.
interaction_id: StringApproval or deferred-tool identity used to break equal-timestamp ties.
Trait Implementations§
Source§impl Clone for InteractionPageKey
impl Clone for InteractionPageKey
Source§fn clone(&self) -> InteractionPageKey
fn clone(&self) -> InteractionPageKey
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 InteractionPageKey
impl Debug for InteractionPageKey
impl Eq for InteractionPageKey
Source§impl PartialEq for InteractionPageKey
impl PartialEq for InteractionPageKey
impl StructuralPartialEq for InteractionPageKey
Auto Trait Implementations§
impl Freeze for InteractionPageKey
impl RefUnwindSafe for InteractionPageKey
impl Send for InteractionPageKey
impl Sync for InteractionPageKey
impl Unpin for InteractionPageKey
impl UnsafeUnpin for InteractionPageKey
impl UnwindSafe for InteractionPageKey
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