pub struct Pattern {
pub id: String,
pub units: Units,
pub content_units: Units,
pub transform: Transform,
pub rect: Rect,
pub view_box: Option<ViewBox>,
}Expand description
A pattern element.
pattern element in SVG.
Fields
id: StringElement’s ID.
Taken from the SVG itself. Can’t be empty.
units: UnitsCoordinate system units.
patternUnits in SVG.
content_units: UnitsContent coordinate system units.
patternContentUnits in SVG.
transform: TransformPattern transform.
patternTransform in SVG.
rect: RectPattern rectangle.
x, y, width and height in SVG.
view_box: Option<ViewBox>Pattern viewbox.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Pattern
impl Send for Pattern
impl Sync for Pattern
impl Unpin for Pattern
impl UnwindSafe for Pattern
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more