Struct sway_core::language::parsed::DelineatedPathExpression
source · pub struct DelineatedPathExpression {
pub call_path_binding: TypeBinding<CallPath>,
pub args: Option<Vec<Expression>>,
}
Fields§
§call_path_binding: TypeBinding<CallPath>
§args: Option<Vec<Expression>>
When args is equal to Option::None then it means that the DelineatedPathExpression was initialized from an expression that does not end with parenthesis.
Trait Implementations§
source§impl Clone for DelineatedPathExpression
impl Clone for DelineatedPathExpression
source§fn clone(&self) -> DelineatedPathExpression
fn clone(&self) -> DelineatedPathExpression
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more