pub struct MotionAxes {
pub x: bool,
pub y: bool,
pub z: bool,
}Expand description
Per-axis enable mask for motion features.
Fields§
§x: boolEnable X-axis contribution.
y: boolEnable Y-axis contribution.
z: boolEnable Z-axis contribution.
Implementations§
Source§impl MotionAxes
impl MotionAxes
Trait Implementations§
Source§impl Clone for MotionAxes
impl Clone for MotionAxes
Source§fn clone(&self) -> MotionAxes
fn clone(&self) -> MotionAxes
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 MotionAxes
impl Debug for MotionAxes
Source§impl Format for MotionAxes
impl Format for MotionAxes
Source§impl PartialEq for MotionAxes
impl PartialEq for MotionAxes
impl Copy for MotionAxes
impl Eq for MotionAxes
impl StructuralPartialEq for MotionAxes
Auto Trait Implementations§
impl Freeze for MotionAxes
impl RefUnwindSafe for MotionAxes
impl Send for MotionAxes
impl Sync for MotionAxes
impl Unpin for MotionAxes
impl UnsafeUnpin for MotionAxes
impl UnwindSafe for MotionAxes
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