pub struct DepMissing {
pub pkg: String,
pub dep: Option<String>,
}
Expand description
Describes a package in the package stack.
Fields§
§pkg: String
The name of the package
dep: Option<String>
The dep string that pulled in the package. If it was different from the package name.
Trait Implementations§
Source§impl Clone for DepMissing
impl Clone for DepMissing
Source§fn clone(&self) -> DepMissing
fn clone(&self) -> DepMissing
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DepMissing
impl Debug for DepMissing
Source§impl Default for DepMissing
impl Default for DepMissing
Source§fn default() -> DepMissing
fn default() -> DepMissing
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DepMissing
impl RefUnwindSafe for DepMissing
impl Send for DepMissing
impl Sync for DepMissing
impl Unpin for DepMissing
impl UnwindSafe for DepMissing
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