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