pub enum WindingOrder {
Clockwise,
CounterClockwise,
}
Expand description
How a linestring is wound, clockwise or counter-clockwise
Variants§
Trait Implementations§
Source§impl Clone for WindingOrder
impl Clone for WindingOrder
Source§fn clone(&self) -> WindingOrder
fn clone(&self) -> WindingOrder
Returns a copy 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 WindingOrder
impl Debug for WindingOrder
Source§impl PartialEq for WindingOrder
impl PartialEq for WindingOrder
impl Copy for WindingOrder
impl Eq for WindingOrder
impl StructuralPartialEq for WindingOrder
Auto Trait Implementations§
impl Freeze for WindingOrder
impl RefUnwindSafe for WindingOrder
impl Send for WindingOrder
impl Sync for WindingOrder
impl Unpin for WindingOrder
impl UnwindSafe for WindingOrder
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