pub enum NamedDirection {
Bottom(Ident),
Top(Ident),
Left(Ident),
Right(Ident),
}Variants§
Trait Implementations§
Source§impl Clone for NamedDirection
impl Clone for NamedDirection
Source§fn clone(&self) -> NamedDirection
fn clone(&self) -> NamedDirection
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 NamedDirection
impl Debug for NamedDirection
Source§impl Hash for NamedDirection
impl Hash for NamedDirection
Source§impl Ord for NamedDirection
impl Ord for NamedDirection
Source§fn cmp(&self, other: &NamedDirection) -> Ordering
fn cmp(&self, other: &NamedDirection) -> 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 NamedDirection
impl<'a> Parse<'a> for NamedDirection
Source§impl PartialEq for NamedDirection
impl PartialEq for NamedDirection
Source§impl PartialOrd for NamedDirection
impl PartialOrd for NamedDirection
Source§impl<'a> Peek<'a> for NamedDirection
impl<'a> Peek<'a> for NamedDirection
Source§impl ToCursors for NamedDirection
impl ToCursors for NamedDirection
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for NamedDirection
impl Eq for NamedDirection
impl StructuralPartialEq for NamedDirection
Auto Trait Implementations§
impl Freeze for NamedDirection
impl RefUnwindSafe for NamedDirection
impl Send for NamedDirection
impl Sync for NamedDirection
impl Unpin for NamedDirection
impl UnwindSafe for NamedDirection
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