#[repr(C)]pub struct SvgRenderTransform {
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 SvgRenderTransform
impl Clone for SvgRenderTransform
Source§fn clone(&self) -> SvgRenderTransform
fn clone(&self) -> SvgRenderTransform
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 SvgRenderTransform
impl Debug for SvgRenderTransform
Source§impl Default for SvgRenderTransform
impl Default for SvgRenderTransform
Source§fn default() -> SvgRenderTransform
fn default() -> SvgRenderTransform
Returns the “default value” for a type. Read more
Source§impl PartialEq for SvgRenderTransform
impl PartialEq for SvgRenderTransform
Source§impl PartialOrd for SvgRenderTransform
impl PartialOrd for SvgRenderTransform
impl Copy for SvgRenderTransform
impl StructuralPartialEq for SvgRenderTransform
Auto Trait Implementations§
impl Freeze for SvgRenderTransform
impl RefUnwindSafe for SvgRenderTransform
impl Send for SvgRenderTransform
impl Sync for SvgRenderTransform
impl Unpin for SvgRenderTransform
impl UnwindSafe for SvgRenderTransform
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.