pub enum FillRule {
None,
Winding,
EvenOdd,
}Expand description
How a path-painting operator fills its interior (ISO 32000-1 §8.5.3.3).
Variants§
None
Do not fill at all — the operator only strokes, or only clips.
Winding
Nonzero winding number rule (f, B, W).
EvenOdd
Even-odd rule (f*, B*, W*).
Trait Implementations§
impl Copy for FillRule
impl Eq for FillRule
impl StructuralPartialEq for FillRule
Auto Trait Implementations§
impl Freeze for FillRule
impl RefUnwindSafe for FillRule
impl Send for FillRule
impl Sync for FillRule
impl Unpin for FillRule
impl UnsafeUnpin for FillRule
impl UnwindSafe for FillRule
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