pub enum FlowDirection {
TB,
TD,
BT,
BL,
LR,
}Expand description
An Enum representing the possible options for the direction of flow for the diagram.
Variants§
TB
top to bottom
TD
top-down (same as top to bottom)
BT
bottom to top
BL
right to left
LR
left to right
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlowDirection
impl RefUnwindSafe for FlowDirection
impl Send for FlowDirection
impl Sync for FlowDirection
impl Unpin for FlowDirection
impl UnwindSafe for FlowDirection
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