pub enum AstError {
ProjectionOverflow,
RelPtrOverflow,
UnknownSymbolKind,
CycleDetected,
}Expand description
AST / projection-layer failures.
Variants§
ProjectionOverflow
The AST projection ran out of inline buffer space.
RelPtrOverflow
A relative pointer overflowed its underlying integer width.
UnknownSymbolKind
Conversion between DAG and AST encountered an unknown symbol kind.
CycleDetected
A cycle was detected while converting; the input is not a DAG.
Trait Implementations§
impl Eq for AstError
impl StructuralPartialEq for AstError
Auto Trait Implementations§
impl Freeze for AstError
impl RefUnwindSafe for AstError
impl Send for AstError
impl Sync for AstError
impl Unpin for AstError
impl UnsafeUnpin for AstError
impl UnwindSafe for AstError
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.