pub enum FillingRule {
NonZero,
EvenOdd,
}Expand description
Filling rule for polygon rasterization.
Variants§
Trait Implementations§
Source§impl Clone for FillingRule
impl Clone for FillingRule
Source§fn clone(&self) -> FillingRule
fn clone(&self) -> FillingRule
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 FillingRule
Source§impl Debug for FillingRule
impl Debug for FillingRule
impl Eq for FillingRule
Source§impl PartialEq for FillingRule
impl PartialEq for FillingRule
Source§fn eq(&self, other: &FillingRule) -> bool
fn eq(&self, other: &FillingRule) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FillingRule
Auto Trait Implementations§
impl Freeze for FillingRule
impl RefUnwindSafe for FillingRule
impl Send for FillingRule
impl Sync for FillingRule
impl Unpin for FillingRule
impl UnsafeUnpin for FillingRule
impl UnwindSafe for FillingRule
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