pub struct RetainedCausalRecord {
pub delivery_seq: DeliverySeq,
pub admission_order: AdmissionOrder,
pub kind: RetainedCausalRecordKind,
}Expand description
One typed retained record fact used for candidate-key and provenance checks.
Fields§
§delivery_seq: DeliverySeqDurable appended sequence.
admission_order: AdmissionOrderComplete immutable candidate/direct-record key.
kind: RetainedCausalRecordKindTyped retained record body facts.
Trait Implementations§
Source§impl Clone for RetainedCausalRecord
impl Clone for RetainedCausalRecord
Source§fn clone(&self) -> RetainedCausalRecord
fn clone(&self) -> RetainedCausalRecord
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 RetainedCausalRecord
Source§impl Debug for RetainedCausalRecord
impl Debug for RetainedCausalRecord
impl Eq for RetainedCausalRecord
Source§impl PartialEq for RetainedCausalRecord
impl PartialEq for RetainedCausalRecord
impl StructuralPartialEq for RetainedCausalRecord
Auto Trait Implementations§
impl Freeze for RetainedCausalRecord
impl RefUnwindSafe for RetainedCausalRecord
impl Send for RetainedCausalRecord
impl Sync for RetainedCausalRecord
impl Unpin for RetainedCausalRecord
impl UnsafeUnpin for RetainedCausalRecord
impl UnwindSafe for RetainedCausalRecord
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