pub enum BuildGraphError {
UnknownOp {
node: String,
op: String,
},
Factory {
node: String,
source: FactoryError,
},
Graph(BuildError),
}Variants§
Trait Implementations§
Source§impl Debug for BuildGraphError
impl Debug for BuildGraphError
Source§impl Display for BuildGraphError
impl Display for BuildGraphError
Source§impl Error for BuildGraphError
impl Error for BuildGraphError
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<BuildError> for BuildGraphError
impl From<BuildError> for BuildGraphError
Source§fn from(source: BuildError) -> Self
fn from(source: BuildError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BuildGraphError
impl RefUnwindSafe for BuildGraphError
impl Send for BuildGraphError
impl Sync for BuildGraphError
impl Unpin for BuildGraphError
impl UnsafeUnpin for BuildGraphError
impl UnwindSafe for BuildGraphError
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