pub enum TaskGraphError {
CycleDetected {
project: String,
target: String,
},
UnknownTarget {
target: String,
project: String,
referencing_target: String,
},
UnknownProject {
project: String,
},
TaskNotFound {
project: String,
target: String,
},
}Expand description
Errors from building and validating the task dependency graph.
Variants§
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 From<TaskGraphError> for RunnerError
impl From<TaskGraphError> for RunnerError
Source§fn from(source: TaskGraphError) -> Self
fn from(source: TaskGraphError) -> Self
Converts to this type from the input type.
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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.