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