pub enum PaintOp {
Stroke,
Fill,
FillAndStroke,
}Expand description
The type of paint operation applied to a path.
Variants§
Stroke
Path is stroked (outlined).
Fill
Path is filled.
FillAndStroke
Path is both filled and stroked.
Trait Implementations§
impl Copy for PaintOp
impl Eq for PaintOp
impl StructuralPartialEq for PaintOp
Auto Trait Implementations§
impl Freeze for PaintOp
impl RefUnwindSafe for PaintOp
impl Send for PaintOp
impl Sync for PaintOp
impl Unpin for PaintOp
impl UnsafeUnpin for PaintOp
impl UnwindSafe for PaintOp
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.