pub struct Missing {
pub dep: String,
pub stack: Vec<DepMissing>,
}
Expand description
A package that could not be resolved.
Fields§
§dep: String
The Dependency we failed to satisfy.
stack: Vec<DepMissing>
The dependency path leadsing to pkg.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Missing
impl RefUnwindSafe for Missing
impl Send for Missing
impl Sync for Missing
impl Unpin for Missing
impl UnwindSafe for Missing
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