pub enum EdgeOrder {
ReverseLexicographic,
Maintain,
}Expand description
The order in which we process the edges, and possibly remove them.
Variants§
ReverseLexicographic
Go through the order in reverse lexicographic order. This is usually the fastest.
Maintain
Go through the edges in the order they currently have in the edge list.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EdgeOrder
impl RefUnwindSafe for EdgeOrder
impl Send for EdgeOrder
impl Sync for EdgeOrder
impl Unpin for EdgeOrder
impl UnwindSafe for EdgeOrder
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