pub struct DependencyNode {
pub service_id: ServiceId,
pub dependencies: Vec<ServiceId>,
pub dependents: Vec<ServiceId>,
}
Expand description
Dependency graph node
Fields§
§service_id: ServiceId
§dependencies: Vec<ServiceId>
§dependents: Vec<ServiceId>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DependencyNode
impl RefUnwindSafe for DependencyNode
impl Send for DependencyNode
impl Sync for DependencyNode
impl Unpin for DependencyNode
impl UnwindSafe for DependencyNode
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