pub enum ActivityState {
Unknown,
Sitting,
Standing,
Walking,
Running,
Jumping,
Lying,
}Expand description
Activity state
Variants§
Trait Implementations§
Source§impl Clone for ActivityState
impl Clone for ActivityState
Source§fn clone(&self) -> ActivityState
fn clone(&self) -> ActivityState
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 ActivityState
impl Debug for ActivityState
Source§impl PartialEq for ActivityState
impl PartialEq for ActivityState
impl Copy for ActivityState
impl Eq for ActivityState
impl StructuralPartialEq for ActivityState
Auto Trait Implementations§
impl Freeze for ActivityState
impl RefUnwindSafe for ActivityState
impl Send for ActivityState
impl Sync for ActivityState
impl Unpin for ActivityState
impl UnsafeUnpin for ActivityState
impl UnwindSafe for ActivityState
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