pub struct Deps {
pub required: FnvHashMap<String, String>,
pub optional: FnvHashMap<String, String>,
}
Expand description
Deps describes if a product is a required or optional dependency. Required dependencies will cause the application to abort if they are not present
Fields§
§required: FnvHashMap<String, String>
§optional: FnvHashMap<String, String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Deps
impl RefUnwindSafe for Deps
impl Send for Deps
impl Sync for Deps
impl Unpin for Deps
impl UnwindSafe for Deps
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