usecrate::BoxStr;/// Represents a parameter in a function signature defined in Rust.
#[derive(Debug, Clone)]pubstructParameter{pub(crate)ident: BoxStr,
#[expect(unused)]pub(crate)ty:syn::Type,
}implParameter{/// Return the identifier of the parameter as a string.
pubfnident(&self)->&str{&self.ident
}}