pub enum EdgeDirection {
In,
Out,
}Expand description
Which direction is this edge going? Inwards or outwards from this BasicBlock?
Variants§
In
This is an inbound edge with this BasicBlock as the target.
Out
This is an outbound edge with this BasicBlock as the source.
Trait Implementations§
Source§impl Clone for EdgeDirection
impl Clone for EdgeDirection
Source§fn clone(&self) -> EdgeDirection
fn clone(&self) -> EdgeDirection
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 EdgeDirection
impl Debug for EdgeDirection
Source§impl PartialEq for EdgeDirection
impl PartialEq for EdgeDirection
impl Copy for EdgeDirection
impl Eq for EdgeDirection
impl StructuralPartialEq for EdgeDirection
Auto Trait Implementations§
impl Freeze for EdgeDirection
impl RefUnwindSafe for EdgeDirection
impl Send for EdgeDirection
impl Sync for EdgeDirection
impl Unpin for EdgeDirection
impl UnwindSafe for EdgeDirection
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