pub enum UserUpdateAction {
UserFlatControl {
level: i32,
},
SkipPositionUpdate,
Move {
x: i32,
y: i32,
z: f64,
},
Sit {
local_z: f64,
can_stand_up: bool,
},
Lay {
local_z: f64,
},
Sign {
id: i32,
},
Gesture {
gesture: Gesture,
},
Posture {
posture: Posture,
},
}
Variants§
Trait Implementations§
Source§impl Clone for UserUpdateAction
impl Clone for UserUpdateAction
Source§fn clone(&self) -> UserUpdateAction
fn clone(&self) -> UserUpdateAction
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 UserUpdateAction
impl Debug for UserUpdateAction
Source§impl PartialEq for UserUpdateAction
impl PartialEq for UserUpdateAction
Source§impl ToString for UserUpdateAction
impl ToString for UserUpdateAction
impl StructuralPartialEq for UserUpdateAction
Auto Trait Implementations§
impl Freeze for UserUpdateAction
impl RefUnwindSafe for UserUpdateAction
impl Send for UserUpdateAction
impl Sync for UserUpdateAction
impl Unpin for UserUpdateAction
impl UnwindSafe for UserUpdateAction
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