pub enum SessionDecision {
Waiting {
check: PoseCheck,
valid_frames: u8,
},
CaptureReady {
check: PoseCheck,
},
}Variants§
Trait Implementations§
Source§impl Clone for SessionDecision
impl Clone for SessionDecision
Source§fn clone(&self) -> SessionDecision
fn clone(&self) -> SessionDecision
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 SessionDecision
impl Debug for SessionDecision
Source§impl<'de> Deserialize<'de> for SessionDecision
impl<'de> Deserialize<'de> for SessionDecision
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
Source§impl PartialEq for SessionDecision
impl PartialEq for SessionDecision
Source§fn eq(&self, other: &SessionDecision) -> bool
fn eq(&self, other: &SessionDecision) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionDecision
impl Serialize for SessionDecision
impl Eq for SessionDecision
impl StructuralPartialEq for SessionDecision
Auto Trait Implementations§
impl Freeze for SessionDecision
impl RefUnwindSafe for SessionDecision
impl Send for SessionDecision
impl Sync for SessionDecision
impl Unpin for SessionDecision
impl UnsafeUnpin for SessionDecision
impl UnwindSafe for SessionDecision
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