pub enum DErr {
TypeMissmatch,
NoSuchPort,
ExecutorError(ExecutorError),
NoEdgeOnIdx,
SinglePartenerEdge,
}Expand description
All runtime errors that can occure while executing or manipulating some graph.
Variants§
TypeMissmatch
NoSuchPort
ExecutorError(ExecutorError)
NoEdgeOnIdx
SinglePartenerEdge
Occurs if an edge is removed where the partners connection do not match.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DErr
impl RefUnwindSafe for DErr
impl Send for DErr
impl Sync for DErr
impl Unpin for DErr
impl UnwindSafe for DErr
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