pub enum OpIdent {
RandomSecret {
random_id: RandomId,
to_addr: Option<String>,
index: usize,
},
AnswerSecret {
decision_id: DecisionId,
},
Lock {
random_id: RandomId,
},
Mask {
random_id: RandomId,
},
}Expand description
Operation Ident
Each event can be recorded as one or more idents, we save these idents to avoid duplicated submission.
Variants§
Trait Implementations§
Source§impl Ord for OpIdent
impl Ord for OpIdent
Source§impl PartialOrd for OpIdent
impl PartialOrd for OpIdent
impl Eq for OpIdent
impl StructuralPartialEq for OpIdent
Auto Trait Implementations§
impl Freeze for OpIdent
impl RefUnwindSafe for OpIdent
impl Send for OpIdent
impl Sync for OpIdent
impl Unpin for OpIdent
impl UnwindSafe for OpIdent
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