pub struct Parameter {
pub name: Option<String>,
pub param_type: String,
pub location: ParameterLocation,
}
Expand description
Function parameter
Fields§
§name: Option<String>
Parameter name
param_type: String
Parameter type
location: ParameterLocation
Register or stack location
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Parameter
impl RefUnwindSafe for Parameter
impl Send for Parameter
impl Sync for Parameter
impl Unpin for Parameter
impl UnwindSafe for Parameter
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