#[repr(u8)]pub enum ShapeDirection {
Normal = 1,
Reversed = 3,
Unknown2 = 2,
Unknown0 = 0,
}Expand description
Drawing direction of the shape curve, useful for trim path
Variants§
Trait Implementations§
Source§impl Clone for ShapeDirection
impl Clone for ShapeDirection
Source§fn clone(&self) -> ShapeDirection
fn clone(&self) -> ShapeDirection
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 ShapeDirection
Source§impl<'de> Deserialize<'de> for ShapeDirection
impl<'de> Deserialize<'de> for ShapeDirection
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
Auto Trait Implementations§
impl Freeze for ShapeDirection
impl RefUnwindSafe for ShapeDirection
impl Send for ShapeDirection
impl Sync for ShapeDirection
impl Unpin for ShapeDirection
impl UnsafeUnpin for ShapeDirection
impl UnwindSafe for ShapeDirection
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