pub struct InertialSensorRaw {
pub x: f64,
pub y: f64,
pub z: f64,
}Expand description
Represents raw values returned from an inertial sensor.
Fields§
§x: f64The raw x value returned from the inertial sensor.
y: f64The raw y value returned from the inertial sensor.
z: f64The raw z value returned from the inertial sensor.
Trait Implementations§
Source§impl Clone for InertialSensorRaw
impl Clone for InertialSensorRaw
Source§fn clone(&self) -> InertialSensorRaw
fn clone(&self) -> InertialSensorRaw
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 InertialSensorRaw
impl Debug for InertialSensorRaw
Source§impl PartialEq for InertialSensorRaw
impl PartialEq for InertialSensorRaw
impl Copy for InertialSensorRaw
impl StructuralPartialEq for InertialSensorRaw
Auto Trait Implementations§
impl Freeze for InertialSensorRaw
impl RefUnwindSafe for InertialSensorRaw
impl Send for InertialSensorRaw
impl Sync for InertialSensorRaw
impl Unpin for InertialSensorRaw
impl UnwindSafe for InertialSensorRaw
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