pub enum KeriEvent {
Inception(IcpEvent),
Rotation(RotEvent),
Interaction(IxnEvent),
}Expand description
KERI event types for verification.
Variants§
Inception(IcpEvent)
Inception event (icp) — creates the identity and establishes the first key.
Rotation(RotEvent)
Rotation event (rot) — rotates to the pre-committed key.
Interaction(IxnEvent)
Interaction event (ixn) — anchors data without rotating keys.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for KeriEvent
impl<'de> Deserialize<'de> for KeriEvent
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 KeriEvent
impl StructuralPartialEq for KeriEvent
Auto Trait Implementations§
impl Freeze for KeriEvent
impl RefUnwindSafe for KeriEvent
impl Send for KeriEvent
impl Sync for KeriEvent
impl Unpin for KeriEvent
impl UnsafeUnpin for KeriEvent
impl UnwindSafe for KeriEvent
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