pub type Matrix = Matrix<Number>;
Expand description
computed value of matrix()
Aliased Type§
struct Matrix {
pub a: f32,
pub b: f32,
pub c: f32,
pub d: f32,
pub e: f32,
pub f: f32,
}
Fields§
§a: f32
§b: f32
§c: f32
§d: f32
§e: f32
§f: f32
Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for GenericMatrix<T>
impl<T: Clone> Clone for GenericMatrix<T>
Source§fn clone(&self) -> GenericMatrix<T>
fn clone(&self) -> GenericMatrix<T>
Returns a copy 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<T: Debug> Debug for GenericMatrix<T>
impl<T: Debug> Debug for GenericMatrix<T>
Source§impl<'de, T> Deserialize<'de> for GenericMatrix<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for GenericMatrix<T>where
T: Deserialize<'de>,
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<T> MallocSizeOf for GenericMatrix<T>where
T: MallocSizeOf,
impl<T> MallocSizeOf for GenericMatrix<T>where
T: MallocSizeOf,
Source§fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
fn size_of(&self, ops: &mut MallocSizeOfOps) -> usize
Measure the heap usage of all descendant heap-allocated structures, but
not the space taken up by the value itself.
Source§impl<T: PartialEq> PartialEq for GenericMatrix<T>
impl<T: PartialEq> PartialEq for GenericMatrix<T>
Source§impl<T> Serialize for GenericMatrix<T>where
T: Serialize,
impl<T> Serialize for GenericMatrix<T>where
T: Serialize,
Source§impl<T> SpecifiedValueInfo for GenericMatrix<T>
impl<T> SpecifiedValueInfo for GenericMatrix<T>
Source§const SUPPORTED_TYPES: u8 = 0u8
const SUPPORTED_TYPES: u8 = 0u8
Supported CssTypes by the given value type. Read more
Source§impl<T> ToAnimatedValue for GenericMatrix<T>where
T: ToAnimatedValue,
impl<T> ToAnimatedValue for GenericMatrix<T>where
T: ToAnimatedValue,
Source§type AnimatedValue = GenericMatrix<<T as ToAnimatedValue>::AnimatedValue>
type AnimatedValue = GenericMatrix<<T as ToAnimatedValue>::AnimatedValue>
The type of the animated value.
Source§fn from_animated_value(from: Self::AnimatedValue) -> Self
fn from_animated_value(from: Self::AnimatedValue) -> Self
Converts back an animated value into a computed value.
Source§fn to_animated_value(self, context: &Context<'_>) -> Self::AnimatedValue
fn to_animated_value(self, context: &Context<'_>) -> Self::AnimatedValue
Converts this value to an animated value.
Source§impl<T> ToComputedValue for GenericMatrix<T>where
T: ToComputedValue,
impl<T> ToComputedValue for GenericMatrix<T>where
T: ToComputedValue,
Source§type ComputedValue = GenericMatrix<<T as ToComputedValue>::ComputedValue>
type ComputedValue = GenericMatrix<<T as ToComputedValue>::ComputedValue>
The computed value type we’re going to be converted to.
Source§fn from_computed_value(from: &Self::ComputedValue) -> Self
fn from_computed_value(from: &Self::ComputedValue) -> Self
Convert a computed value to specified value form. Read more
Source§fn to_computed_value(&self, context: &Context<'_>) -> Self::ComputedValue
fn to_computed_value(&self, context: &Context<'_>) -> Self::ComputedValue
Convert a specified value to a computed value, using itself and the data
inside the
Context
.Source§impl<T> ToCss for GenericMatrix<T>where
T: ToCss,
impl<T> ToCss for GenericMatrix<T>where
T: ToCss,
Source§impl<T> ToResolvedValue for GenericMatrix<T>where
T: ToResolvedValue,
impl<T> ToResolvedValue for GenericMatrix<T>where
T: ToResolvedValue,
Source§type ResolvedValue = GenericMatrix<<T as ToResolvedValue>::ResolvedValue>
type ResolvedValue = GenericMatrix<<T as ToResolvedValue>::ResolvedValue>
The resolved value type we’re going to be converted to.
Source§fn from_resolved_value(from: Self::ResolvedValue) -> Self
fn from_resolved_value(from: Self::ResolvedValue) -> Self
Convert a resolved value to resolved value form.
Source§fn to_resolved_value(self, context: &Context<'_>) -> Self::ResolvedValue
fn to_resolved_value(self, context: &Context<'_>) -> Self::ResolvedValue
Convert a resolved value to a resolved value.