pub struct DepGraph { /* private fields */ }Implementations§
Source§impl DepGraph
impl DepGraph
pub fn new() -> Self
pub fn get_children( &self, key: Id<SymbolRecord<'static>>, ) -> Option<&DepMiniSet>
pub fn get_parents(&self, key: Id<SymbolRecord<'static>>) -> Option<&DepMiniSet>
pub fn iter_childs( &self, ) -> impl Iterator<Item = (Id<SymbolRecord<'static>>, &DepMiniSet)>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DepGraph
impl RefUnwindSafe for DepGraph
impl Send for DepGraph
impl Sync for DepGraph
impl Unpin for DepGraph
impl UnsafeUnpin for DepGraph
impl UnwindSafe for DepGraph
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