pub struct InertialSensorEuler {
pub pitch: f64,
pub roll: f64,
pub yaw: f64,
}Expand description
Represents the set of euler angles returned from an inertial sensor.
Fields§
§pitch: f64The counterclockwise rotation on the y axis.
roll: f64The counterclockwise rotation on the x axis.
yaw: f64The counterclockwise rotation on the z axis.
Trait Implementations§
Source§impl Clone for InertialSensorEuler
impl Clone for InertialSensorEuler
Source§fn clone(&self) -> InertialSensorEuler
fn clone(&self) -> InertialSensorEuler
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 InertialSensorEuler
impl Debug for InertialSensorEuler
Source§impl PartialEq for InertialSensorEuler
impl PartialEq for InertialSensorEuler
impl Copy for InertialSensorEuler
impl StructuralPartialEq for InertialSensorEuler
Auto Trait Implementations§
impl Freeze for InertialSensorEuler
impl RefUnwindSafe for InertialSensorEuler
impl Send for InertialSensorEuler
impl Sync for InertialSensorEuler
impl Unpin for InertialSensorEuler
impl UnwindSafe for InertialSensorEuler
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