pub enum Term {
Usize(usize),
Integer(BigInt),
Atom(Atom),
XRegister(XRegister),
YRegister(YRegister),
Label(Label),
Character(char),
List(List),
FloatingPointRegister(FloatingPointRegister),
AllocationList(AllocationList),
Literal(Literal),
TypedRegister(TypedRegister),
}
Variants§
Usize(usize)
Integer(BigInt)
Atom(Atom)
XRegister(XRegister)
YRegister(YRegister)
Label(Label)
Character(char)
List(List)
FloatingPointRegister(FloatingPointRegister)
AllocationList(AllocationList)
Literal(Literal)
TypedRegister(TypedRegister)
Trait Implementations§
Source§impl Decode for Term
impl Decode for Term
fn decode_with_tag<R: Read>( reader: &mut R, tag: u8, ) -> Result<Self, DecodeError>
fn decode<R: Read>(reader: &mut R) -> Result<Self, DecodeError>
impl Eq for Term
impl StructuralPartialEq for Term
Auto Trait Implementations§
impl Freeze for Term
impl RefUnwindSafe for Term
impl Send for Term
impl Sync for Term
impl Unpin for Term
impl UnwindSafe for Term
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