#[repr(C)]pub struct StyleTransformMatrix2D {
pub a: FloatValue,
pub b: FloatValue,
pub c: FloatValue,
pub d: FloatValue,
pub tx: FloatValue,
pub ty: FloatValue,
}Expand description
Represents a CSS matrix(a, b, c, d, tx, ty) 2D transform function.
Fields§
§a: FloatValue§b: FloatValue§c: FloatValue§d: FloatValue§tx: FloatValue§ty: FloatValueTrait Implementations§
Source§impl Clone for StyleTransformMatrix2D
impl Clone for StyleTransformMatrix2D
Source§fn clone(&self) -> StyleTransformMatrix2D
fn clone(&self) -> StyleTransformMatrix2D
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StyleTransformMatrix2D
impl Debug for StyleTransformMatrix2D
Source§impl Default for StyleTransformMatrix2D
impl Default for StyleTransformMatrix2D
Source§impl Hash for StyleTransformMatrix2D
impl Hash for StyleTransformMatrix2D
Source§impl Ord for StyleTransformMatrix2D
impl Ord for StyleTransformMatrix2D
Source§fn cmp(&self, other: &StyleTransformMatrix2D) -> Ordering
fn cmp(&self, other: &StyleTransformMatrix2D) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StyleTransformMatrix2D
impl PartialEq for StyleTransformMatrix2D
Source§fn eq(&self, other: &StyleTransformMatrix2D) -> bool
fn eq(&self, other: &StyleTransformMatrix2D) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for StyleTransformMatrix2D
impl PartialOrd for StyleTransformMatrix2D
impl Copy for StyleTransformMatrix2D
impl Eq for StyleTransformMatrix2D
impl StructuralPartialEq for StyleTransformMatrix2D
Auto Trait Implementations§
impl Freeze for StyleTransformMatrix2D
impl RefUnwindSafe for StyleTransformMatrix2D
impl Send for StyleTransformMatrix2D
impl Sync for StyleTransformMatrix2D
impl Unpin for StyleTransformMatrix2D
impl UnsafeUnpin for StyleTransformMatrix2D
impl UnwindSafe for StyleTransformMatrix2D
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