pub enum TaskGraphError {
DuplicateNodeId(String),
UnknownDependency {
node: String,
dep: String,
},
Cycle(String),
TooManyNodes {
count: usize,
max: usize,
},
DepthExceeded {
depth: usize,
max: usize,
},
UnknownTool {
node: String,
tool: String,
},
NodeNotFound(String),
DiffInvalid(String),
}Expand description
Error variants produced during TaskGraph construction or validation.
Variants§
DuplicateNodeId(String)
Two nodes share the same NodeId.
UnknownDependency
A depends_on entry references a NodeId not present in the graph.
Fields
Cycle(String)
The dependency edges contain at least one cycle.
TooManyNodes
The graph exceeds MAX_NODES.
DepthExceeded
The longest root-to-leaf path exceeds MAX_DEPTH.
UnknownTool
A node lists a tool not present in the provided catalog.
Fields
NodeNotFound(String)
A referenced node id was not found in the graph.
DiffInvalid(String)
The diff is structurally invalid (e.g. would leave an empty graph).
Trait Implementations§
Source§impl Clone for TaskGraphError
impl Clone for TaskGraphError
Source§fn clone(&self) -> TaskGraphError
fn clone(&self) -> TaskGraphError
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 moreSource§impl Debug for TaskGraphError
impl Debug for TaskGraphError
Source§impl Display for TaskGraphError
impl Display for TaskGraphError
Source§impl Error for TaskGraphError
impl Error for TaskGraphError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for TaskGraphError
impl PartialEq for TaskGraphError
impl Eq for TaskGraphError
impl StructuralPartialEq for TaskGraphError
Auto Trait Implementations§
impl Freeze for TaskGraphError
impl RefUnwindSafe for TaskGraphError
impl Send for TaskGraphError
impl Sync for TaskGraphError
impl Unpin for TaskGraphError
impl UnwindSafe for TaskGraphError
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