pub enum ModulePathPrimary {
Number(Box<Number>),
Identifier(Box<Identifier>),
ModulePathConcatenation(Box<ModulePathConcatenation>),
ModulePathMultipleConcatenation(Box<ModulePathMultipleConcatenation>),
FunctionSubroutineCall(Box<FunctionSubroutineCall>),
Mintypmax(Box<ModulePathPrimaryMintypmax>),
}Variants
Number(Box<Number>)
Identifier(Box<Identifier>)
ModulePathConcatenation(Box<ModulePathConcatenation>)
ModulePathMultipleConcatenation(Box<ModulePathMultipleConcatenation>)
FunctionSubroutineCall(Box<FunctionSubroutineCall>)
Mintypmax(Box<ModulePathPrimaryMintypmax>)
Trait Implementations
sourceimpl Clone for ModulePathPrimary
impl Clone for ModulePathPrimary
sourcefn clone(&self) -> ModulePathPrimary
fn clone(&self) -> ModulePathPrimary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ModulePathPrimary
impl Debug for ModulePathPrimary
sourceimpl<'a> From<&'a ModulePathPrimary> for RefNodes<'a>
impl<'a> From<&'a ModulePathPrimary> for RefNodes<'a>
sourcefn from(x: &'a ModulePathPrimary) -> Self
fn from(x: &'a ModulePathPrimary) -> Self
Converts to this type from the input type.
sourceimpl<'a> From<&'a ModulePathPrimary> for RefNode<'a>
impl<'a> From<&'a ModulePathPrimary> for RefNode<'a>
sourcefn from(x: &'a ModulePathPrimary) -> Self
fn from(x: &'a ModulePathPrimary) -> Self
Converts to this type from the input type.
sourceimpl From<ModulePathPrimary> for AnyNode
impl From<ModulePathPrimary> for AnyNode
sourcefn from(x: ModulePathPrimary) -> Self
fn from(x: ModulePathPrimary) -> Self
Converts to this type from the input type.
sourceimpl<'a> IntoIterator for &'a ModulePathPrimary
impl<'a> IntoIterator for &'a ModulePathPrimary
sourceimpl PartialEq<ModulePathPrimary> for ModulePathPrimary
impl PartialEq<ModulePathPrimary> for ModulePathPrimary
sourcefn eq(&self, other: &ModulePathPrimary) -> bool
fn eq(&self, other: &ModulePathPrimary) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ModulePathPrimary) -> bool
fn ne(&self, other: &ModulePathPrimary) -> bool
This method tests for !=.
sourceimpl<'a> TryFrom<&'a ModulePathPrimary> for Locate
impl<'a> TryFrom<&'a ModulePathPrimary> for Locate
sourceimpl TryFrom<AnyNode> for ModulePathPrimary
impl TryFrom<AnyNode> for ModulePathPrimary
sourceimpl TryFrom<ModulePathPrimary> for Locate
impl TryFrom<ModulePathPrimary> for Locate
impl StructuralPartialEq for ModulePathPrimary
Auto Trait Implementations
impl RefUnwindSafe for ModulePathPrimary
impl Send for ModulePathPrimary
impl Sync for ModulePathPrimary
impl Unpin for ModulePathPrimary
impl UnwindSafe for ModulePathPrimary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more