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 StructuralPartialEq for Base
Auto Trait Implementations§
impl Freeze for Base
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more