pub enum SpreadMethod {
Pad,
Reflect,
Repeat,
}Expand description
A spread method.
spreadMethod attribute in the SVG.
Variants§
Trait Implementations§
Source§impl Clone for SpreadMethod
impl Clone for SpreadMethod
Source§fn clone(&self) -> SpreadMethod
fn clone(&self) -> SpreadMethod
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SpreadMethod
Source§impl Debug for SpreadMethod
impl Debug for SpreadMethod
Source§impl Default for SpreadMethod
impl Default for SpreadMethod
Source§impl PartialEq for SpreadMethod
impl PartialEq for SpreadMethod
Source§fn eq(&self, other: &SpreadMethod) -> bool
fn eq(&self, other: &SpreadMethod) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SpreadMethod
Auto Trait Implementations§
impl Freeze for SpreadMethod
impl RefUnwindSafe for SpreadMethod
impl Send for SpreadMethod
impl Sync for SpreadMethod
impl Unpin for SpreadMethod
impl UnsafeUnpin for SpreadMethod
impl UnwindSafe for SpreadMethod
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