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