pub enum SampleState {
Unlabeled,
Confirmed {
speaker_id: Key,
},
Retracted,
}Variants§
Trait Implementations§
Source§impl Clone for SampleState
impl Clone for SampleState
Source§fn clone(&self) -> SampleState
fn clone(&self) -> SampleState
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 moreSource§impl Debug for SampleState
impl Debug for SampleState
Source§impl<'de> Deserialize<'de> for SampleState
impl<'de> Deserialize<'de> for SampleState
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 SampleState
Source§impl PartialEq for SampleState
impl PartialEq for SampleState
Source§impl Serialize for SampleState
impl Serialize for SampleState
impl StructuralPartialEq for SampleState
Auto Trait Implementations§
impl Freeze for SampleState
impl RefUnwindSafe for SampleState
impl Send for SampleState
impl Sync for SampleState
impl Unpin for SampleState
impl UnsafeUnpin for SampleState
impl UnwindSafe for SampleState
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