Struct solang_parser::pt::Parameter
source · pub struct Parameter {
pub loc: Loc,
pub annotation: Option<Annotation>,
pub ty: Expression,
pub storage: Option<StorageLocation>,
pub name: Option<Identifier>,
}
Expand description
A parameter.
<ty> [storage] <name>
Fields§
§loc: Loc
The code location.
annotation: Option<Annotation>
An optional annotation ‘@annotation’.
ty: Expression
The type.
storage: Option<StorageLocation>
The optional memory location.
name: Option<Identifier>
The optional identifier.
Trait Implementations§
source§impl OptionalCodeLocation for Parameter
impl OptionalCodeLocation for Parameter
source§impl PartialEq for Parameter
impl PartialEq for Parameter
impl Eq for Parameter
impl StructuralEq for Parameter
impl StructuralPartialEq for Parameter
Auto Trait Implementations§
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