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

Provided Methods§

fn name(&self) -> String

The name of the parameter

fn get_type(&self) -> Option<Type<'_>>

Return the type of the parameter

Implementors§