pub struct GraphResult<G>where
G: DepGraph,{
pub all: Vec<G::ModuleId>,
pub graph: FastDiGraphMap<G::ModuleId, ()>,
pub cycles: Vec<Vec<G::ModuleId>>,
/* private fields */
}
Fields§
§all: Vec<G::ModuleId>
§graph: FastDiGraphMap<G::ModuleId, ()>
§cycles: Vec<Vec<G::ModuleId>>
Auto Trait Implementations§
impl<G> Freeze for GraphResult<G>
impl<G> RefUnwindSafe for GraphResult<G>
impl<G> Send for GraphResult<G>
impl<G> Sync for GraphResult<G>
impl<G> Unpin for GraphResult<G>
impl<G> UnwindSafe for GraphResult<G>
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