pub enum EdgeEnding {
ToFlow,
ToNode {
node_index: usize,
},
}Expand description
Represents one end of an Edge.
An EdgeEnding can either connect to the flow or to a specific node.
Variants§
Trait Implementations§
Source§impl Clone for EdgeEnding
impl Clone for EdgeEnding
Source§fn clone(&self) -> EdgeEnding
fn clone(&self) -> EdgeEnding
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 moreAuto Trait Implementations§
impl Freeze for EdgeEnding
impl RefUnwindSafe for EdgeEnding
impl Send for EdgeEnding
impl Sync for EdgeEnding
impl Unpin for EdgeEnding
impl UnwindSafe for EdgeEnding
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