pub enum DataFlowErr {
NotFound,
FailedState,
}Expand description
This enumeration defines the errors one can face when trying to access a DataFlowInstance.
Variants§
Trait Implementations§
Source§impl Debug for DataFlowErr
impl Debug for DataFlowErr
Source§impl Display for DataFlowErr
impl Display for DataFlowErr
Source§impl Error for DataFlowErr
impl Error for DataFlowErr
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()
Auto Trait Implementations§
impl Freeze for DataFlowErr
impl RefUnwindSafe for DataFlowErr
impl Send for DataFlowErr
impl Sync for DataFlowErr
impl Unpin for DataFlowErr
impl UnwindSafe for DataFlowErr
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