pub struct ParameterDeclaration<'tree> {
pub span: Span,
pub declarator: Option<ParameterDeclarationDeclarator<'tree>>,
pub type: TypeSpecifier<'tree>,
pub children: Vec<ParameterDeclarationChildren<'tree>>,
}Fields§
§span: Span§declarator: Option<ParameterDeclarationDeclarator<'tree>>§type: TypeSpecifier<'tree>§children: Vec<ParameterDeclarationChildren<'tree>>Trait Implementations§
Source§impl<'tree> Clone for ParameterDeclaration<'tree>
impl<'tree> Clone for ParameterDeclaration<'tree>
Source§fn clone(&self) -> ParameterDeclaration<'tree>
fn clone(&self) -> ParameterDeclaration<'tree>
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<'tree> Debug for ParameterDeclaration<'tree>
impl<'tree> Debug for ParameterDeclaration<'tree>
Source§impl<'tree> FromNode<'tree> for ParameterDeclaration<'tree>
impl<'tree> FromNode<'tree> for ParameterDeclaration<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ParameterDeclaration<'tree>
impl<'tree> RefUnwindSafe for ParameterDeclaration<'tree>
impl<'tree> Send for ParameterDeclaration<'tree>
impl<'tree> Sync for ParameterDeclaration<'tree>
impl<'tree> Unpin for ParameterDeclaration<'tree>
impl<'tree> UnsafeUnpin for ParameterDeclaration<'tree>
impl<'tree> UnwindSafe for ParameterDeclaration<'tree>
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