pub enum NodeOrientation {
LeftToRight,
RightToLeft,
}Expand description
Orientation of the node
NodeOrientation::LeftToRight- inputs on the left, outputs on the rightNodeOrientation::RightToLeft- outputs on the left, inputs on the right
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for NodeOrientation
impl Clone for NodeOrientation
Source§fn clone(&self) -> NodeOrientation
fn clone(&self) -> NodeOrientation
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 NodeOrientation
impl Debug for NodeOrientation
impl Copy for NodeOrientation
Auto Trait Implementations§
impl Freeze for NodeOrientation
impl RefUnwindSafe for NodeOrientation
impl Send for NodeOrientation
impl Sync for NodeOrientation
impl Unpin for NodeOrientation
impl UnwindSafe for NodeOrientation
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