pub struct TopoSortGraph {
pub nodes: Vec<u32>,
pub edges: Vec<(u32, u32)>,
}Fields§
§nodes: Vec<u32>§edges: Vec<(u32, u32)>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TopoGraph
impl RefUnwindSafe for TopoGraph
impl Send for TopoGraph
impl Sync for TopoGraph
impl Unpin for TopoGraph
impl UnsafeUnpin for TopoGraph
impl UnwindSafe for TopoGraph
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