pub trait Parameter { // Provided methods fn name(&self) -> String { ... } fn get_type(&self) -> Option<Type<'_>> { ... } }
The name of the parameter
Return the type of the parameter