pub enum TransformListToken {
Matrix {
a: f64,
b: f64,
c: f64,
d: f64,
e: f64,
f: f64,
},
Translate {
tx: f64,
ty: f64,
},
Scale {
sx: f64,
sy: f64,
},
Rotate {
angle: f64,
},
SkewX {
angle: f64,
},
SkewY {
angle: f64,
},
}
Expand description
Transform list token.
Variants§
Trait Implementations§
source§impl Clone for TransformListToken
impl Clone for TransformListToken
source§fn clone(&self) -> TransformListToken
fn clone(&self) -> TransformListToken
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 TransformListToken
impl Debug for TransformListToken
source§impl PartialEq for TransformListToken
impl PartialEq for TransformListToken
impl Copy for TransformListToken
impl StructuralPartialEq for TransformListToken
Auto Trait Implementations§
impl Freeze for TransformListToken
impl RefUnwindSafe for TransformListToken
impl Send for TransformListToken
impl Sync for TransformListToken
impl Unpin for TransformListToken
impl UnwindSafe for TransformListToken
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)