pub enum CompassPoint {
N,
NE,
E,
SE,
S,
SW,
W,
NW,
C,
Underscore,
}Expand description
Allowed values for compass points. Used for specifying edge directions. See also https://graphviz.org/docs/attr-types/portPos/
Variants§
Trait Implementations§
Source§impl Clone for CompassPoint
impl Clone for CompassPoint
Source§fn clone(&self) -> CompassPoint
fn clone(&self) -> CompassPoint
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 CompassPoint
impl Eq for CompassPoint
Source§impl PartialEq for CompassPoint
impl PartialEq for CompassPoint
impl StructuralPartialEq for CompassPoint
Auto Trait Implementations§
impl Freeze for CompassPoint
impl RefUnwindSafe for CompassPoint
impl Send for CompassPoint
impl Sync for CompassPoint
impl Unpin for CompassPoint
impl UnsafeUnpin for CompassPoint
impl UnwindSafe for CompassPoint
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