#[repr(C)]pub struct SvgTransform {
pub sx: f32,
pub kx: f32,
pub ky: f32,
pub sy: f32,
pub tx: f32,
pub ty: f32,
}
Fields§
§sx: f32
§kx: f32
§ky: f32
§sy: f32
§tx: f32
§ty: f32
Trait Implementations§
Source§impl Clone for SvgTransform
impl Clone for SvgTransform
Source§fn clone(&self) -> SvgTransform
fn clone(&self) -> SvgTransform
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 SvgTransform
impl Debug for SvgTransform
Source§impl Default for SvgTransform
impl Default for SvgTransform
Source§fn default() -> SvgTransform
fn default() -> SvgTransform
Returns the “default value” for a type. Read more
Source§impl PartialEq for SvgTransform
impl PartialEq for SvgTransform
Source§impl PartialOrd for SvgTransform
impl PartialOrd for SvgTransform
impl Copy for SvgTransform
impl StructuralPartialEq for SvgTransform
Auto Trait Implementations§
impl Freeze for SvgTransform
impl RefUnwindSafe for SvgTransform
impl Send for SvgTransform
impl Sync for SvgTransform
impl Unpin for SvgTransform
impl UnwindSafe for SvgTransform
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§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IsDefault for T
impl<T> IsDefault for T
Source§fn is_default(&self) -> bool
fn is_default(&self) -> bool
Checks that type has a default value.