#[repr(C)]pub enum DRAW_PATH {
FILL_ONLY = 1,
STROKE_ONLY = 2,
FILL_AND_STROKE = 3,
}
Expand description
Path drawing mode.
Variants§
FILL_ONLY = 1
Draw without outline line.
STROKE_ONLY = 2
Draw outline without fill.
FILL_AND_STROKE = 3
Draw outlined and filled path.
Trait Implementations§
impl StructuralPartialEq for DRAW_PATH
Auto Trait Implementations§
impl Freeze for DRAW_PATH
impl RefUnwindSafe for DRAW_PATH
impl Send for DRAW_PATH
impl Sync for DRAW_PATH
impl Unpin for DRAW_PATH
impl UnwindSafe for DRAW_PATH
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