Struct style::values::generics::transform::Matrix3D
[−]
[src]
pub struct Matrix3D<T, U = T, V = T> {
pub m11: T,
pub m12: T,
pub m13: T,
pub m14: T,
pub m21: T,
pub m22: T,
pub m23: T,
pub m24: T,
pub m31: T,
pub m32: T,
pub m33: T,
pub m34: T,
pub m41: U,
pub m42: U,
pub m43: V,
pub m44: T,
}Fields
m11: T
m12: T
m13: T
m14: T
m21: T
m22: T
m23: T
m24: T
m31: T
m32: T
m33: T
m34: T
m41: U
m42: U
m43: V
m44: T
Trait Implementations
impl<T: Clone, U: Clone, V: Clone> Clone for Matrix3D<T, U, V>[src]
fn clone(&self) -> Matrix3D<T, U, V>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<T: Copy, U: Copy, V: Copy> Copy for Matrix3D<T, U, V>[src]
impl<T: Debug, U: Debug, V: Debug> Debug for Matrix3D<T, U, V>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<T, U, V> MallocSizeOf for Matrix3D<T, U, V> where
T: MallocSizeOf,
U: MallocSizeOf,
V: MallocSizeOf, [src]
T: MallocSizeOf,
U: MallocSizeOf,
V: MallocSizeOf,
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize[src]
Measure the heap usage of all descendant heap-allocated structures, but not the space taken up by the value itself. Read more
impl<T: PartialEq, U: PartialEq, V: PartialEq> PartialEq for Matrix3D<T, U, V>[src]
fn eq(&self, __arg_0: &Matrix3D<T, U, V>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Matrix3D<T, U, V>) -> bool[src]
This method tests for !=.
impl<T, U, V> ToComputedValue for Matrix3D<T, U, V> where
T: ToComputedValue,
U: ToComputedValue,
V: ToComputedValue, [src]
T: ToComputedValue,
U: ToComputedValue,
V: ToComputedValue,
type ComputedValue = Matrix3D<<T as ToComputedValue>::ComputedValue, <U as ToComputedValue>::ComputedValue, <V as ToComputedValue>::ComputedValue>
The computed value type we're going to be converted to.
fn to_computed_value(&self, context: &Context) -> Self::ComputedValue[src]
Convert a specified value to a computed value, using itself and the data inside the Context. Read more
fn from_computed_value(computed: &Self::ComputedValue) -> Self[src]
Convert a computed value to specified value form. Read more