Enum respo::CssTransform
source · pub enum CssTransform {
Translate(f32, f32),
Scale(f32, f32),
Rotate(f32),
Skew(f32, f32),
Matrix(f32, f32, f32, f32, f32, f32),
}Variants§
Translate(f32, f32)
Scale(f32, f32)
Rotate(f32)
Skew(f32, f32)
Matrix(f32, f32, f32, f32, f32, f32)
Trait Implementations§
source§impl Clone for CssTransform
impl Clone for CssTransform
source§fn clone(&self) -> CssTransform
fn clone(&self) -> CssTransform
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 Debug for CssTransform
impl Debug for CssTransform
source§impl Display for CssTransform
impl Display for CssTransform
source§impl PartialEq<CssTransform> for CssTransform
impl PartialEq<CssTransform> for CssTransform
source§fn eq(&self, other: &CssTransform) -> bool
fn eq(&self, other: &CssTransform) -> bool
This method tests for
self and other values to be equal, and is used
by ==.