#[repr(C)]pub struct _tagEOS_AntiCheatCommon_Quat {
pub w: f32,
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
Quaternion using left-handed coordinate system (as in Unreal Engine)
Fields§
§w: f32W component - scalar part
x: f32X component - forward direction
y: f32Y component - right direction
z: f32Z component - up direction
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatCommon_Quat
impl Clone for _tagEOS_AntiCheatCommon_Quat
Source§fn clone(&self) -> _tagEOS_AntiCheatCommon_Quat
fn clone(&self) -> _tagEOS_AntiCheatCommon_Quat
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 _tagEOS_AntiCheatCommon_Quat
impl Debug for _tagEOS_AntiCheatCommon_Quat
Source§impl Default for _tagEOS_AntiCheatCommon_Quat
impl Default for _tagEOS_AntiCheatCommon_Quat
Source§fn default() -> _tagEOS_AntiCheatCommon_Quat
fn default() -> _tagEOS_AntiCheatCommon_Quat
Returns the “default value” for a type. Read more
impl Copy for _tagEOS_AntiCheatCommon_Quat
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatCommon_Quat
impl RefUnwindSafe for _tagEOS_AntiCheatCommon_Quat
impl Send for _tagEOS_AntiCheatCommon_Quat
impl Sync for _tagEOS_AntiCheatCommon_Quat
impl Unpin for _tagEOS_AntiCheatCommon_Quat
impl UnsafeUnpin for _tagEOS_AntiCheatCommon_Quat
impl UnwindSafe for _tagEOS_AntiCheatCommon_Quat
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