Enum g_rust::extension::parsers::subparsers::UserUpdateAction
source · 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 copy 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<UserUpdateAction> for UserUpdateAction
impl PartialEq<UserUpdateAction> for UserUpdateAction
source§fn eq(&self, other: &UserUpdateAction) -> bool
fn eq(&self, other: &UserUpdateAction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ToString for UserUpdateAction
impl ToString for UserUpdateAction
impl StructuralPartialEq for UserUpdateAction
Auto Trait Implementations§
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