pub enum IntegerAtomType {
    Byte(Box<Keyword>),
    Shortint(Box<Keyword>),
    Int(Box<Keyword>),
    Longint(Box<Keyword>),
    Integer(Box<Keyword>),
    Time(Box<Keyword>),
}Variants§
Byte(Box<Keyword>)
Shortint(Box<Keyword>)
Int(Box<Keyword>)
Longint(Box<Keyword>)
Integer(Box<Keyword>)
Time(Box<Keyword>)
Trait Implementations§
Source§impl Clone for IntegerAtomType
 
impl Clone for IntegerAtomType
Source§fn clone(&self) -> IntegerAtomType
 
fn clone(&self) -> IntegerAtomType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for IntegerAtomType
 
impl Debug for IntegerAtomType
Source§impl<'a> From<&'a IntegerAtomType> for RefNode<'a>
 
impl<'a> From<&'a IntegerAtomType> for RefNode<'a>
Source§fn from(x: &'a IntegerAtomType) -> RefNode<'a>
 
fn from(x: &'a IntegerAtomType) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a IntegerAtomType> for RefNodes<'a>
 
impl<'a> From<&'a IntegerAtomType> for RefNodes<'a>
Source§fn from(x: &'a IntegerAtomType) -> RefNodes<'a>
 
fn from(x: &'a IntegerAtomType) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<IntegerAtomType> for AnyNode
 
impl From<IntegerAtomType> for AnyNode
Source§fn from(x: IntegerAtomType) -> AnyNode
 
fn from(x: IntegerAtomType) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a IntegerAtomType
 
impl<'a> IntoIterator for &'a IntegerAtomType
Source§impl PartialEq for IntegerAtomType
 
impl PartialEq for IntegerAtomType
Source§impl<'a> TryFrom<&'a IntegerAtomType> for Locate
 
impl<'a> TryFrom<&'a IntegerAtomType> for Locate
Source§impl TryFrom<AnyNode> for IntegerAtomType
 
impl TryFrom<AnyNode> for IntegerAtomType
Source§impl TryFrom<IntegerAtomType> for Locate
 
impl TryFrom<IntegerAtomType> for Locate
impl StructuralPartialEq for IntegerAtomType
Auto Trait Implementations§
impl Freeze for IntegerAtomType
impl RefUnwindSafe for IntegerAtomType
impl Send for IntegerAtomType
impl Sync for IntegerAtomType
impl Unpin for IntegerAtomType
impl UnwindSafe for IntegerAtomType
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