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