pub enum IntegerType {
    IntegerVectorType(Box<IntegerVectorType>),
    IntegerAtomType(Box<IntegerAtomType>),
}Variants§
IntegerVectorType(Box<IntegerVectorType>)
IntegerAtomType(Box<IntegerAtomType>)
Trait Implementations§
Source§impl Clone for IntegerType
 
impl Clone for IntegerType
Source§fn clone(&self) -> IntegerType
 
fn clone(&self) -> IntegerType
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 IntegerType
 
impl Debug for IntegerType
Source§impl<'a> From<&'a IntegerType> for RefNode<'a>
 
impl<'a> From<&'a IntegerType> for RefNode<'a>
Source§fn from(x: &'a IntegerType) -> RefNode<'a>
 
fn from(x: &'a IntegerType) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a IntegerType> for RefNodes<'a>
 
impl<'a> From<&'a IntegerType> for RefNodes<'a>
Source§fn from(x: &'a IntegerType) -> RefNodes<'a>
 
fn from(x: &'a IntegerType) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<IntegerType> for AnyNode
 
impl From<IntegerType> for AnyNode
Source§fn from(x: IntegerType) -> AnyNode
 
fn from(x: IntegerType) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a IntegerType
 
impl<'a> IntoIterator for &'a IntegerType
Source§impl PartialEq for IntegerType
 
impl PartialEq for IntegerType
Source§impl<'a> TryFrom<&'a IntegerType> for Locate
 
impl<'a> TryFrom<&'a IntegerType> for Locate
Source§impl TryFrom<AnyNode> for IntegerType
 
impl TryFrom<AnyNode> for IntegerType
Source§impl TryFrom<IntegerType> for Locate
 
impl TryFrom<IntegerType> for Locate
impl StructuralPartialEq for IntegerType
Auto Trait Implementations§
impl Freeze for IntegerType
impl RefUnwindSafe for IntegerType
impl Send for IntegerType
impl Sync for IntegerType
impl Unpin for IntegerType
impl UnwindSafe for IntegerType
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