pub enum FunctionParameterDeclarationData {
Named(Option<TypeQualifier>, FunctionParameterDeclarator),
Unnamed(Option<TypeQualifier>, TypeSpecifier),
}Expand description
Function parameter declaration.
Variants§
Named(Option<TypeQualifier>, FunctionParameterDeclarator)
Named parameter
Unnamed(Option<TypeQualifier>, TypeSpecifier)
Unnamed parameter
Trait Implementations§
source§impl Clone for FunctionParameterDeclarationData
impl Clone for FunctionParameterDeclarationData
source§fn clone(&self) -> FunctionParameterDeclarationData
fn clone(&self) -> FunctionParameterDeclarationData
Returns a copy 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 From<Node<FunctionParameterDeclarationData>> for FunctionParameterDeclarationData
impl From<Node<FunctionParameterDeclarationData>> for FunctionParameterDeclarationData
source§fn from(node: Node<FunctionParameterDeclarationData>) -> Self
fn from(node: Node<FunctionParameterDeclarationData>) -> Self
Converts to this type from the input type.
source§impl NodeContent for FunctionParameterDeclarationData
impl NodeContent for FunctionParameterDeclarationData
source§fn into_node<T>(self) -> Node<T>where
T: From<Self> + NodeContent,
fn into_node<T>(self) -> Node<T>where T: From<Self> + NodeContent,
Convert the contents into a node
source§fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
fn spanned(self, start: LexerPosition, end: LexerPosition) -> Node<Self>
Add span information to a syntax node
source§impl PartialEq for FunctionParameterDeclarationData
impl PartialEq for FunctionParameterDeclarationData
source§fn eq(&self, other: &FunctionParameterDeclarationData) -> bool
fn eq(&self, other: &FunctionParameterDeclarationData) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for FunctionParameterDeclarationData
Auto Trait Implementations§
impl RefUnwindSafe for FunctionParameterDeclarationData
impl Send for FunctionParameterDeclarationData
impl Sync for FunctionParameterDeclarationData
impl Unpin for FunctionParameterDeclarationData
impl UnwindSafe for FunctionParameterDeclarationData
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