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 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ASTExprType
impl Debug for ASTExprType
Source§impl PartialEq for ASTExprType
impl PartialEq for ASTExprType
impl Copy for ASTExprType
impl Eq for ASTExprType
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 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