pub struct RotationDegrees {
pub x: f64,
pub y: f64,
pub z: f64,
}
Fields§
§x: f64
§y: f64
§z: f64
Trait Implementations§
Source§impl Clone for RotationDegrees
impl Clone for RotationDegrees
Source§fn clone(&self) -> RotationDegrees
fn clone(&self) -> RotationDegrees
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RotationDegrees
impl Debug for RotationDegrees
Source§impl Default for RotationDegrees
impl Default for RotationDegrees
Source§fn default() -> RotationDegrees
fn default() -> RotationDegrees
Returns the “default value” for a type. Read more
Source§impl From<Matrix<3, 3>> for RotationDegrees
impl From<Matrix<3, 3>> for RotationDegrees
Source§impl From<RotationDegrees> for Matrix<3, 3>
impl From<RotationDegrees> for Matrix<3, 3>
Source§fn from(rotation_degrees: RotationDegrees) -> Self
fn from(rotation_degrees: RotationDegrees) -> Self
Converts to this type from the input type.
Source§impl From<RotationDegrees> for Quat
impl From<RotationDegrees> for Quat
Source§fn from(rotation_degrees: RotationDegrees) -> Self
fn from(rotation_degrees: RotationDegrees) -> Self
Converts to this type from the input type.
Source§impl From<RotationDegrees> for RotationRadians
impl From<RotationDegrees> for RotationRadians
Source§fn from(rotation_degrees: RotationDegrees) -> Self
fn from(rotation_degrees: RotationDegrees) -> Self
Converts to this type from the input type.
Source§impl From<RotationRadians> for RotationDegrees
impl From<RotationRadians> for RotationDegrees
Source§fn from(rotation_radians: RotationRadians) -> Self
fn from(rotation_radians: RotationRadians) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RotationDegrees
impl PartialEq for RotationDegrees
impl Copy for RotationDegrees
impl StructuralPartialEq for RotationDegrees
Auto Trait Implementations§
impl Freeze for RotationDegrees
impl RefUnwindSafe for RotationDegrees
impl Send for RotationDegrees
impl Sync for RotationDegrees
impl Unpin for RotationDegrees
impl UnwindSafe for RotationDegrees
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