#[repr(C)]pub struct Matrix1x3 {
pub c00: Scalar,
pub c01: Scalar,
pub c02: Scalar,
}Expand description
A 1 x 3 Matrix.
Fields§
§c00: Scalar§c01: Scalar§c02: ScalarTrait Implementations§
Source§impl AbsDiffEq for Matrix1x3
impl AbsDiffEq for Matrix1x3
Source§fn default_epsilon() -> Self::Epsilon
fn default_epsilon() -> Self::Epsilon
The default tolerance to use when testing values that are close together. Read more
Source§fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool
fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool
A test for equality that uses the absolute difference to compute the approximate
equality of two numbers.
Source§impl AddAssign for Matrix1x3
impl AddAssign for Matrix1x3
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl MulAssign<f32> for Matrix1x3
impl MulAssign<f32> for Matrix1x3
Source§fn mul_assign(&mut self, rhs: Scalar)
fn mul_assign(&mut self, rhs: Scalar)
Performs the
*= operation. Read moreSource§impl RelativeEq for Matrix1x3
impl RelativeEq for Matrix1x3
Source§fn default_max_relative() -> Self::Epsilon
fn default_max_relative() -> Self::Epsilon
The default relative tolerance for testing values that are far-apart. Read more
Source§impl SubAssign for Matrix1x3
impl SubAssign for Matrix1x3
Source§fn sub_assign(&mut self, rhs: Matrix1x3)
fn sub_assign(&mut self, rhs: Matrix1x3)
Performs the
-= operation. Read moreSource§impl UlpsEq for Matrix1x3
impl UlpsEq for Matrix1x3
impl Copy for Matrix1x3
impl StructuralPartialEq for Matrix1x3
Auto Trait Implementations§
impl Freeze for Matrix1x3
impl RefUnwindSafe for Matrix1x3
impl Send for Matrix1x3
impl Sync for Matrix1x3
impl Unpin for Matrix1x3
impl UnwindSafe for Matrix1x3
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