pub struct ModuleDep {
pub dependent: &'static str,
pub dependency: &'static str,
}Expand description
A dependency pair: (dependent, dependency).
Fields§
§dependent: &'static strThe module that depends on another.
dependency: &'static strThe module that must be built first.
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