pub enum RankDirection {
TopBottom,
BottomTop,
LeftRight,
RightLeft,
}Expand description
Direction to layout graph, for more information see Graphviz documentation.
Variants§
Trait Implementations§
Source§impl Clone for RankDirection
impl Clone for RankDirection
Source§fn clone(&self) -> RankDirection
fn clone(&self) -> RankDirection
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 RankDirection
impl Debug for RankDirection
Source§impl PartialEq for RankDirection
impl PartialEq for RankDirection
impl Copy for RankDirection
impl Eq for RankDirection
impl StructuralPartialEq for RankDirection
Auto Trait Implementations§
impl Freeze for RankDirection
impl RefUnwindSafe for RankDirection
impl Send for RankDirection
impl Sync for RankDirection
impl Unpin for RankDirection
impl UnwindSafe for RankDirection
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