pub enum TermType {
Variable,
Atom,
Nil,
Blob,
String,
Integer,
Rational,
Float,
CompoundTerm,
ListPair,
Dict,
Unknown,
}
Expand description
Various types a term can be.
Variants§
Trait Implementations§
source§impl PartialEq for TermType
impl PartialEq for TermType
impl StructuralPartialEq for TermType
Auto Trait Implementations§
impl RefUnwindSafe for TermType
impl Send for TermType
impl Sync for TermType
impl Unpin for TermType
impl UnwindSafe for TermType
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