pub struct DepEdge {
pub extern_name: String,
pub pkg_id: String,
}Expand description
Information about a dependency edge in the resolved graph.
Fields§
§extern_name: StringNormalized extern crate name (underscored, handles renames).
pkg_id: StringPackage ID of the dependency.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DepEdge
impl RefUnwindSafe for DepEdge
impl Send for DepEdge
impl Sync for DepEdge
impl Unpin for DepEdge
impl UnsafeUnpin for DepEdge
impl UnwindSafe for DepEdge
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