pub enum PythonManagedMutationError {
Arena(ArenaError),
Strong(StrongEdgeMutationError),
Weak(WeakEdgeMutationError),
Ephemeron(EphemeronMutationError),
}Expand description
A checked Python managed-graph mutation failure.
Variants§
Arena(ArenaError)
The owning allocation handle is stale.
Strong(StrongEdgeMutationError)
A strong edge could not be admitted.
Weak(WeakEdgeMutationError)
A weak edge could not be admitted.
Ephemeron(EphemeronMutationError)
An ephemeron could not be admitted.
Trait Implementations§
Source§impl Clone for PythonManagedMutationError
impl Clone for PythonManagedMutationError
Source§fn clone(&self) -> PythonManagedMutationError
fn clone(&self) -> PythonManagedMutationError
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 PythonManagedMutationError
impl Debug for PythonManagedMutationError
impl Eq for PythonManagedMutationError
Source§impl From<ArenaError> for PythonManagedMutationError
impl From<ArenaError> for PythonManagedMutationError
Source§fn from(value: ArenaError) -> Self
fn from(value: ArenaError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for PythonManagedMutationError
Auto Trait Implementations§
impl Freeze for PythonManagedMutationError
impl RefUnwindSafe for PythonManagedMutationError
impl Send for PythonManagedMutationError
impl Sync for PythonManagedMutationError
impl Unpin for PythonManagedMutationError
impl UnsafeUnpin for PythonManagedMutationError
impl UnwindSafe for PythonManagedMutationError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.