pub struct FunctionDeclarator {
pub parameters: Vec<Node<ParameterDeclaration>>,
pub ellipsis: Ellipsis,
}
Expand description
Function parameter part of a declarator
Fields§
§parameters: Vec<Node<ParameterDeclaration>>
§ellipsis: Ellipsis
Trait Implementations§
Source§impl Clone for FunctionDeclarator
impl Clone for FunctionDeclarator
Source§fn clone(&self) -> FunctionDeclarator
fn clone(&self) -> FunctionDeclarator
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 Debug for FunctionDeclarator
impl Debug for FunctionDeclarator
Source§impl PartialEq for FunctionDeclarator
impl PartialEq for FunctionDeclarator
impl StructuralPartialEq for FunctionDeclarator
Auto Trait Implementations§
impl Freeze for FunctionDeclarator
impl RefUnwindSafe for FunctionDeclarator
impl Send for FunctionDeclarator
impl Sync for FunctionDeclarator
impl Unpin for FunctionDeclarator
impl UnwindSafe for FunctionDeclarator
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