pub enum GraphMutationError {
Show 13 variants
NodeAlreadyExists(NodeId),
MissingNode(NodeId),
PortAlreadyExists(PortId),
MissingPort(PortId),
EdgeAlreadyExists(EdgeId),
MissingEdge(EdgeId),
MissingGroup(GroupId),
BindingAlreadyExists(BindingId),
MissingBinding(BindingId),
MissingStickyNote(StickyNoteId),
PortOwnerMismatch {
port: PortId,
expected: NodeId,
got: NodeId,
},
DuplicateNodePort {
node: NodeId,
port: PortId,
},
PortInsertOutOfBounds {
node: NodeId,
index: usize,
len: usize,
},
}Variants§
NodeAlreadyExists(NodeId)
MissingNode(NodeId)
PortAlreadyExists(PortId)
MissingPort(PortId)
EdgeAlreadyExists(EdgeId)
MissingEdge(EdgeId)
MissingGroup(GroupId)
BindingAlreadyExists(BindingId)
MissingBinding(BindingId)
MissingStickyNote(StickyNoteId)
PortOwnerMismatch
DuplicateNodePort
PortInsertOutOfBounds
Trait Implementations§
Source§impl Clone for GraphMutationError
impl Clone for GraphMutationError
Source§fn clone(&self) -> GraphMutationError
fn clone(&self) -> GraphMutationError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GraphMutationError
impl Debug for GraphMutationError
Source§impl Display for GraphMutationError
impl Display for GraphMutationError
impl Eq for GraphMutationError
Source§impl Error for GraphMutationError
impl Error for GraphMutationError
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 PartialEq for GraphMutationError
impl PartialEq for GraphMutationError
Source§fn eq(&self, other: &GraphMutationError) -> bool
fn eq(&self, other: &GraphMutationError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphMutationError
Auto Trait Implementations§
impl Freeze for GraphMutationError
impl RefUnwindSafe for GraphMutationError
impl Send for GraphMutationError
impl Sync for GraphMutationError
impl Unpin for GraphMutationError
impl UnsafeUnpin for GraphMutationError
impl UnwindSafe for GraphMutationError
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