pub enum ExprType {
Boolean,
Integer,
String,
ParamList,
ReferenceOfVar(VarType),
}Variants§
Implementations§
Source§impl ExprType
impl ExprType
pub fn match_for_bin_op(&self, other: &Self) -> bool
pub fn is_bool_array(&self) -> bool
pub fn is_int_array(&self) -> bool
Trait Implementations§
impl Copy for ExprType
impl Eq for ExprType
impl StructuralPartialEq for ExprType
Auto Trait Implementations§
impl Freeze for ExprType
impl RefUnwindSafe for ExprType
impl Send for ExprType
impl Sync for ExprType
impl Unpin for ExprType
impl UnwindSafe for ExprType
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