pub enum DagError {
ArenaFull,
DanglingId,
NullSentinel,
ArityOverflow,
}Expand description
DAG arena / dedup / interning failures.
Variants§
ArenaFull
The arena hit its maximum addressable capacity (u32::MAX - 1).
DanglingId
A DagNodeId referred to a slot outside the current arena.
NullSentinel
Attempted to dereference the null sentinel.
ArityOverflow
A node’s child count exceeded the configured arity limit.
Trait Implementations§
impl Eq for DagError
impl StructuralPartialEq for DagError
Auto Trait Implementations§
impl Freeze for DagError
impl RefUnwindSafe for DagError
impl Send for DagError
impl Sync for DagError
impl Unpin for DagError
impl UnsafeUnpin for DagError
impl UnwindSafe for DagError
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.