pub struct AngularAcceleration {
pub roll_dps2: Option<f64>,
pub pitch_dps2: Option<f64>,
pub yaw_dps2: Option<f64>,
}Expand description
Angular acceleration in 3D.
Fields§
§roll_dps2: Option<f64>Roll acceleration in deg/s²
pitch_dps2: Option<f64>Pitch acceleration in deg/s²
yaw_dps2: Option<f64>Yaw acceleration in deg/s²
Trait Implementations§
Source§impl Clone for AngularAcceleration
impl Clone for AngularAcceleration
Source§fn clone(&self) -> AngularAcceleration
fn clone(&self) -> AngularAcceleration
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 AngularAcceleration
impl Debug for AngularAcceleration
Source§impl Default for AngularAcceleration
impl Default for AngularAcceleration
Source§fn default() -> AngularAcceleration
fn default() -> AngularAcceleration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AngularAcceleration
impl<'de> Deserialize<'de> for AngularAcceleration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for AngularAcceleration
impl Serialize for AngularAcceleration
Source§impl Validate for AngularAcceleration
impl Validate for AngularAcceleration
Auto Trait Implementations§
impl Freeze for AngularAcceleration
impl RefUnwindSafe for AngularAcceleration
impl Send for AngularAcceleration
impl Sync for AngularAcceleration
impl Unpin for AngularAcceleration
impl UnwindSafe for AngularAcceleration
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