#[repr(u32)]pub enum SweepDirection {
CounterClockwise = 0,
Clockwise = 1,
}Expand description
Defines the direction that an elliptical arc is drawn.
Variants§
CounterClockwise = 0
Arcs are drawn in a counterclockwise (negative-angle) direction.
Clockwise = 1
Arcs are drawn in a clockwise (positive-angle) direction.
Trait Implementations§
Source§impl Clone for SweepDirection
impl Clone for SweepDirection
Source§fn clone(&self) -> SweepDirection
fn clone(&self) -> SweepDirection
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SweepDirection
impl Debug for SweepDirection
Source§impl Default for SweepDirection
impl Default for SweepDirection
Source§impl<'de> Deserialize<'de> for SweepDirection
impl<'de> Deserialize<'de> for SweepDirection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SweepDirection
impl PartialEq for SweepDirection
Source§impl Serialize for SweepDirection
impl Serialize for SweepDirection
impl Copy for SweepDirection
impl Eq for SweepDirection
impl StructuralPartialEq for SweepDirection
Auto Trait Implementations§
impl Freeze for SweepDirection
impl RefUnwindSafe for SweepDirection
impl Send for SweepDirection
impl Sync for SweepDirection
impl Unpin for SweepDirection
impl UnwindSafe for SweepDirection
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