pub struct AngularVelocity {
pub x: f64,
pub y: f64,
pub z: f64,
}
Expand description
Angular velocity around three axes in radians per second.
Fields§
§x: f64
Rotation rate around the X axis.
y: f64
Rotation rate around the Y axis.
z: f64
Rotation rate around the Z axis.
Trait Implementations§
Source§impl Clone for AngularVelocity
impl Clone for AngularVelocity
Source§fn clone(&self) -> AngularVelocity
fn clone(&self) -> AngularVelocity
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 AngularVelocity
impl Debug for AngularVelocity
Source§impl PartialEq for AngularVelocity
impl PartialEq for AngularVelocity
impl Copy for AngularVelocity
impl StructuralPartialEq for AngularVelocity
Auto Trait Implementations§
impl Freeze for AngularVelocity
impl RefUnwindSafe for AngularVelocity
impl Send for AngularVelocity
impl Sync for AngularVelocity
impl Unpin for AngularVelocity
impl UnwindSafe for AngularVelocity
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