pub struct AOCSetPhysicsOverride {
pub override_speed: f32,
pub override_jump: f32,
pub override_gravity: f32,
pub not_sneak: bool,
pub not_sneak_glitch: bool,
pub not_new_move: bool,
}
Fields§
§override_speed: f32
§override_jump: f32
§override_gravity: f32
§not_sneak: bool
§not_sneak_glitch: bool
§not_new_move: bool
Trait Implementations§
Source§impl Clone for AOCSetPhysicsOverride
impl Clone for AOCSetPhysicsOverride
Source§fn clone(&self) -> AOCSetPhysicsOverride
fn clone(&self) -> AOCSetPhysicsOverride
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AOCSetPhysicsOverride
impl Debug for AOCSetPhysicsOverride
Source§impl Deserialize for AOCSetPhysicsOverride
impl Deserialize for AOCSetPhysicsOverride
Source§type Output = AOCSetPhysicsOverride
type Output = AOCSetPhysicsOverride
Output should be Self, except for wrapper types.
fn deserialize(deser: &mut Deserializer<'_>) -> DeserializeResult<Self>
Source§impl PartialEq for AOCSetPhysicsOverride
impl PartialEq for AOCSetPhysicsOverride
Source§impl Serialize for AOCSetPhysicsOverride
impl Serialize for AOCSetPhysicsOverride
type Input = AOCSetPhysicsOverride
fn serialize<S: Serializer>(value: &Self::Input, ser: &mut S) -> SerializeResult
impl StructuralPartialEq for AOCSetPhysicsOverride
Auto Trait Implementations§
impl Freeze for AOCSetPhysicsOverride
impl RefUnwindSafe for AOCSetPhysicsOverride
impl Send for AOCSetPhysicsOverride
impl Sync for AOCSetPhysicsOverride
impl Unpin for AOCSetPhysicsOverride
impl UnwindSafe for AOCSetPhysicsOverride
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