pub enum VarType {
Boolean,
Integer,
String,
ArrayOfBoolean(usize),
ArrayOfInteger(usize),
RefBoolean,
RefInteger,
RefString,
RefArrayOfBoolean(usize),
RefArrayOfInteger(usize),
}Variants§
Boolean
Integer
String
ArrayOfBoolean(usize)
ArrayOfInteger(usize)
RefBoolean
RefInteger
RefString
RefArrayOfBoolean(usize)
RefArrayOfInteger(usize)
Implementations§
Source§impl VarType
impl VarType
pub fn is_reference(&self) -> bool
pub fn get_array_size(&self) -> Option<usize>
pub fn is_boolean(&self) -> bool
pub fn is_integer(&self) -> bool
pub fn is_string(&self) -> bool
Trait Implementations§
impl Copy for VarType
impl Eq for VarType
impl StructuralPartialEq for VarType
Auto Trait Implementations§
impl Freeze for VarType
impl RefUnwindSafe for VarType
impl Send for VarType
impl Sync for VarType
impl Unpin for VarType
impl UnwindSafe for VarType
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