pub struct ImmutableOrderCandidateMajorRestore {
pub transaction_order: TransactionOrder,
pub candidate_keys: Vec<AdmissionOrder>,
}Expand description
Public persisted candidate-major group supplied during restoration.
Several candidate keys caused by one transaction contribute one numeric major to the frontier union.
Fields§
§transaction_order: TransactionOrderImmutable assigned major.
candidate_keys: Vec<AdmissionOrder>Complete candidate keys sharing that major.
Trait Implementations§
Source§impl Clone for ImmutableOrderCandidateMajorRestore
impl Clone for ImmutableOrderCandidateMajorRestore
Source§fn clone(&self) -> ImmutableOrderCandidateMajorRestore
fn clone(&self) -> ImmutableOrderCandidateMajorRestore
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 Eq for ImmutableOrderCandidateMajorRestore
impl StructuralPartialEq for ImmutableOrderCandidateMajorRestore
Auto Trait Implementations§
impl Freeze for ImmutableOrderCandidateMajorRestore
impl RefUnwindSafe for ImmutableOrderCandidateMajorRestore
impl Send for ImmutableOrderCandidateMajorRestore
impl Sync for ImmutableOrderCandidateMajorRestore
impl Unpin for ImmutableOrderCandidateMajorRestore
impl UnsafeUnpin for ImmutableOrderCandidateMajorRestore
impl UnwindSafe for ImmutableOrderCandidateMajorRestore
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