pub enum ConfirmationState {
Unconfirmed,
AutomaticallyTrained,
Confirmed,
}Expand description
Durable identity-confirmation lifecycle for a correction packet.
Variants§
Unconfirmed
No classifier observations from this packet were intentionally retained.
AutomaticallyTrained
The recording was clean and all observations were automatically trained.
Confirmed
Exact observation-level human confirmations were applied.
Trait Implementations§
Source§impl Clone for ConfirmationState
impl Clone for ConfirmationState
Source§fn clone(&self) -> ConfirmationState
fn clone(&self) -> ConfirmationState
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 ConfirmationState
Source§impl Debug for ConfirmationState
impl Debug for ConfirmationState
Source§impl<'de> Deserialize<'de> for ConfirmationState
impl<'de> Deserialize<'de> for ConfirmationState
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 ConfirmationState
Source§impl PartialEq for ConfirmationState
impl PartialEq for ConfirmationState
Source§impl Serialize for ConfirmationState
impl Serialize for ConfirmationState
impl StructuralPartialEq for ConfirmationState
Auto Trait Implementations§
impl Freeze for ConfirmationState
impl RefUnwindSafe for ConfirmationState
impl Send for ConfirmationState
impl Sync for ConfirmationState
impl Unpin for ConfirmationState
impl UnsafeUnpin for ConfirmationState
impl UnwindSafe for ConfirmationState
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