pub struct DetectedGesture {
pub gesture_type: Option<String>,
pub human_id: Option<String>,
pub confidence: Option<f64>,
pub timestamp: Option<DateTime<Utc>>,
}Expand description
Detected gesture.
Fields§
§gesture_type: Option<String>Gesture type
human_id: Option<String>Human ID
confidence: Option<f64>Confidence (0-1)
timestamp: Option<DateTime<Utc>>Timestamp
Trait Implementations§
Source§impl Clone for DetectedGesture
impl Clone for DetectedGesture
Source§fn clone(&self) -> DetectedGesture
fn clone(&self) -> DetectedGesture
Returns a duplicate of the value. Read more
1.0.0 · 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 DetectedGesture
impl Debug for DetectedGesture
Source§impl Default for DetectedGesture
impl Default for DetectedGesture
Source§fn default() -> DetectedGesture
fn default() -> DetectedGesture
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DetectedGesture
impl<'de> Deserialize<'de> for DetectedGesture
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 Serialize for DetectedGesture
impl Serialize for DetectedGesture
Auto Trait Implementations§
impl Freeze for DetectedGesture
impl RefUnwindSafe for DetectedGesture
impl Send for DetectedGesture
impl Sync for DetectedGesture
impl Unpin for DetectedGesture
impl UnwindSafe for DetectedGesture
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