pub struct ParameterTypeList {
pub parameter_list: Vec<ParameterDeclaration>,
pub variadic: bool,
pub span: Range<usize>,
}Expand description
Parameter type list
Fields§
§parameter_list: Vec<ParameterDeclaration>§variadic: bool§span: Range<usize>Trait Implementations§
Source§impl Clone for ParameterTypeList
impl Clone for ParameterTypeList
Source§fn clone(&self) -> ParameterTypeList
fn clone(&self) -> ParameterTypeList
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 ParameterTypeList
impl Debug for ParameterTypeList
Source§impl PartialEq for ParameterTypeList
impl PartialEq for ParameterTypeList
impl StructuralPartialEq for ParameterTypeList
Auto Trait Implementations§
impl Freeze for ParameterTypeList
impl RefUnwindSafe for ParameterTypeList
impl Send for ParameterTypeList
impl Sync for ParameterTypeList
impl Unpin for ParameterTypeList
impl UnwindSafe for ParameterTypeList
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