Struct solang_parser::pt::Base
source · pub struct Base {
pub loc: Loc,
pub name: IdentifierPath,
pub args: Option<Vec<Expression>>,
}
Expand description
A function modifier invocation (see FunctionAttribute) or a contract inheritance specifier (see ContractDefinition).
Both have the same semantics:
<name>[(<args>,*)]
Fields§
§loc: Loc
The code location.
name: IdentifierPath
The identifier path.
args: Option<Vec<Expression>>
The optional arguments.
Trait Implementations§
source§impl OptionalCodeLocation for Base
impl OptionalCodeLocation for Base
source§impl PartialEq for Base
impl PartialEq for Base
impl Eq for Base
impl StructuralEq for Base
impl StructuralPartialEq for Base
Auto Trait Implementations§
impl RefUnwindSafe for Base
impl Send for Base
impl Sync for Base
impl Unpin for Base
impl UnwindSafe for Base
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