pub enum ASTExprType {
Error,
Op,
Id,
Int,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ASTExprType
impl Clone for ASTExprType
Source§fn clone(&self) -> ASTExprType
fn clone(&self) -> ASTExprType
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 moreimpl Copy for ASTExprType
Source§impl Debug for ASTExprType
impl Debug for ASTExprType
impl Eq for ASTExprType
Source§impl PartialEq for ASTExprType
impl PartialEq for ASTExprType
Source§fn eq(&self, other: &ASTExprType) -> bool
fn eq(&self, other: &ASTExprType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ASTExprType
Auto Trait Implementations§
impl Freeze for ASTExprType
impl RefUnwindSafe for ASTExprType
impl Send for ASTExprType
impl Sync for ASTExprType
impl Unpin for ASTExprType
impl UnsafeUnpin for ASTExprType
impl UnwindSafe for ASTExprType
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