pub struct AngularRate {
pub roll_rate: Radians,
pub pitch_rate: Radians,
pub yaw_rate: Radians,
}Expand description
Represents the instantaneous rotational velocity of the aircraft.
These values represent the “Body Rate” of the vehicle, typically sourced directly from a filtered 3-axis Gyroscope.
Fields§
§roll_rate: RadiansRotational velocity around the longitudinal axis (X).
pitch_rate: RadiansRotational velocity around the lateral axis (Y).
yaw_rate: RadiansRotational velocity around the vertical axis (Z).
Trait Implementations§
Source§impl Clone for AngularRate
impl Clone for AngularRate
Source§fn clone(&self) -> AngularRate
fn clone(&self) -> AngularRate
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 AngularRate
impl Debug for AngularRate
Source§impl Default for AngularRate
impl Default for AngularRate
Source§fn default() -> AngularRate
fn default() -> AngularRate
Returns the “default value” for a type. Read more
impl Copy for AngularRate
Auto Trait Implementations§
impl Freeze for AngularRate
impl RefUnwindSafe for AngularRate
impl Send for AngularRate
impl Sync for AngularRate
impl Unpin for AngularRate
impl UnsafeUnpin for AngularRate
impl UnwindSafe for AngularRate
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