pub struct TilingPatternDefinition {
pub id: String,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
pub transform: Matrix,
pub nodes: Vec<Node>,
}Fields§
§id: String§x: f64§y: f64§width: f64§height: f64§transform: Matrix§nodes: Vec<Node>Trait Implementations§
Source§impl Clone for TilingPatternDefinition
impl Clone for TilingPatternDefinition
Source§impl Debug for TilingPatternDefinition
impl Debug for TilingPatternDefinition
Source§impl PartialEq for TilingPatternDefinition
impl PartialEq for TilingPatternDefinition
Source§impl Serialize for TilingPatternDefinition
impl Serialize for TilingPatternDefinition
impl StructuralPartialEq for TilingPatternDefinition
Auto Trait Implementations§
impl Freeze for TilingPatternDefinition
impl RefUnwindSafe for TilingPatternDefinition
impl Send for TilingPatternDefinition
impl Sync for TilingPatternDefinition
impl Unpin for TilingPatternDefinition
impl UnsafeUnpin for TilingPatternDefinition
impl UnwindSafe for TilingPatternDefinition
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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 more