pub enum LinearDirection {
Angle(Angle),
Named(Ident, NamedDirection, Option<NamedDirection>),
}Variants§
Angle(Angle)
Named(Ident, NamedDirection, Option<NamedDirection>)
Trait Implementations§
Source§impl Clone for LinearDirection
impl Clone for LinearDirection
Source§fn clone(&self) -> LinearDirection
fn clone(&self) -> LinearDirection
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 LinearDirection
impl Debug for LinearDirection
Source§impl Hash for LinearDirection
impl Hash for LinearDirection
Source§impl Ord for LinearDirection
impl Ord for LinearDirection
Source§fn cmp(&self, other: &LinearDirection) -> Ordering
fn cmp(&self, other: &LinearDirection) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for LinearDirection
impl<'a> Parse<'a> for LinearDirection
Source§impl PartialEq for LinearDirection
impl PartialEq for LinearDirection
Source§impl PartialOrd for LinearDirection
impl PartialOrd for LinearDirection
Source§impl<'a> Peek<'a> for LinearDirection
impl<'a> Peek<'a> for LinearDirection
Source§impl ToCursors for LinearDirection
impl ToCursors for LinearDirection
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for LinearDirection
impl Eq for LinearDirection
impl StructuralPartialEq for LinearDirection
Auto Trait Implementations§
impl Freeze for LinearDirection
impl RefUnwindSafe for LinearDirection
impl Send for LinearDirection
impl Sync for LinearDirection
impl Unpin for LinearDirection
impl UnwindSafe for LinearDirection
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