pub struct DependencyResult {
pub root_id: u64,
pub nodes: Vec<DependencyNode>,
}Expand description
Result of a dependency or reverse-dependency query.
Fields§
§root_id: u64The origin unit.
nodes: Vec<DependencyNode>All dependency nodes found.
Trait Implementations§
Source§impl Clone for DependencyResult
impl Clone for DependencyResult
Source§fn clone(&self) -> DependencyResult
fn clone(&self) -> DependencyResult
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for DependencyResult
impl RefUnwindSafe for DependencyResult
impl Send for DependencyResult
impl Sync for DependencyResult
impl Unpin for DependencyResult
impl UnsafeUnpin for DependencyResult
impl UnwindSafe for DependencyResult
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