pub struct ModuleDep {
pub name: String,
pub deps: Vec<String>,
}Expand description
Module dependency graph node.
Fields§
§name: StringModule name
deps: Vec<String>Direct dependencies
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ModuleDep
impl RefUnwindSafe for ModuleDep
impl Send for ModuleDep
impl Sync for ModuleDep
impl Unpin for ModuleDep
impl UnsafeUnpin for ModuleDep
impl UnwindSafe for ModuleDep
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