pub enum NodeExecutionError {
NodesNotFoundInRegistry(NodesNotFoundError),
NodeNotFoundInGraph(NodeNotFoundInGraphError),
EdgeNotFoundInGraph(EdgeNotFoundInGraphError),
InputInjection(InjectionError),
}Variants§
NodesNotFoundInRegistry(NodesNotFoundError)
NodeNotFoundInGraph(NodeNotFoundInGraphError)
EdgeNotFoundInGraph(EdgeNotFoundInGraphError)
InputInjection(InjectionError)
Trait Implementations§
Source§impl Debug for NodeExecutionError
impl Debug for NodeExecutionError
Source§impl Display for NodeExecutionError
impl Display for NodeExecutionError
Source§impl Error for NodeExecutionError
impl Error for NodeExecutionError
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<EdgeNotFoundInGraphError> for NodeExecutionError
impl From<EdgeNotFoundInGraphError> for NodeExecutionError
Source§fn from(source: EdgeNotFoundInGraphError) -> Self
fn from(source: EdgeNotFoundInGraphError) -> Self
Converts to this type from the input type.
Source§impl From<InjectionError> for NodeExecutionError
impl From<InjectionError> for NodeExecutionError
Source§fn from(source: InjectionError) -> Self
fn from(source: InjectionError) -> Self
Converts to this type from the input type.
Source§impl From<NodeNotFoundInGraphError> for NodeExecutionError
impl From<NodeNotFoundInGraphError> for NodeExecutionError
Source§fn from(source: NodeNotFoundInGraphError) -> Self
fn from(source: NodeNotFoundInGraphError) -> Self
Converts to this type from the input type.
Source§impl From<NodesNotFoundError> for NodeExecutionError
impl From<NodesNotFoundError> for NodeExecutionError
Source§fn from(source: NodesNotFoundError) -> Self
fn from(source: NodesNotFoundError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for NodeExecutionError
impl RefUnwindSafe for NodeExecutionError
impl Send for NodeExecutionError
impl Sync for NodeExecutionError
impl Unpin for NodeExecutionError
impl UnwindSafe for NodeExecutionError
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