pub enum NodeState {
Unvisited,
Visiting,
Visited,
Pending,
Installing,
Installed,
Failed(String),
}
Expand description
State of a dependency node
Variants§
Unvisited
Not processed yet
Visiting
Currently being processed (for cycle detection)
Visited
Processing completed
Pending
Installation pending
Installing
Currently installing
Installed
Installation completed
Failed(String)
Installation failed
Trait Implementations§
impl StructuralPartialEq for NodeState
Auto Trait Implementations§
impl Freeze for NodeState
impl RefUnwindSafe for NodeState
impl Send for NodeState
impl Sync for NodeState
impl Unpin for NodeState
impl UnwindSafe for NodeState
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