Enum sway_core::Expression
source · [−]pub enum Expression {
Show 21 variants
Literal {
value: Literal,
span: Span,
},
FunctionApplication {
name: CallPath,
arguments: Vec<Expression>,
type_arguments: Vec<TypeArgument>,
span: Span,
},
LazyOperator {
op: LazyOp,
lhs: Box<Expression>,
rhs: Box<Expression>,
span: Span,
},
VariableExpression {
name: Ident,
span: Span,
},
Tuple {
fields: Vec<Expression>,
span: Span,
},
TupleIndex {
prefix: Box<Expression>,
index: usize,
index_span: Span,
span: Span,
},
Array {
contents: Vec<Expression>,
span: Span,
},
StructExpression {
struct_name: CallPath,
type_arguments: Vec<TypeArgument>,
fields: Vec<StructExpressionField>,
span: Span,
},
CodeBlock {
contents: CodeBlock,
span: Span,
},
IfExp {
condition: Box<Expression>,
then: Box<Expression>,
else: Option<Box<Expression>>,
span: Span,
},
MatchExp {
value: Box<Expression>,
branches: Vec<MatchBranch>,
span: Span,
},
AsmExpression {
span: Span,
asm: AsmExpression,
},
MethodApplication {
method_name: MethodName,
contract_call_params: Vec<StructExpressionField>,
arguments: Vec<Expression>,
type_arguments: Vec<TypeArgument>,
span: Span,
},
SubfieldExpression {
prefix: Box<Expression>,
span: Span,
field_to_access: Ident,
},
DelineatedPath {
call_path: CallPath,
args: Vec<Expression>,
span: Span,
type_arguments: Vec<TypeArgument>,
},
AbiCast {
abi_name: CallPath,
address: Box<Expression>,
span: Span,
},
ArrayIndex {
prefix: Box<Expression>,
index: Box<Expression>,
span: Span,
},
StorageAccess {
field_names: Vec<Ident>,
span: Span,
},
SizeOfVal {
exp: Box<Expression>,
span: Span,
},
BuiltinGetTypeProperty {
builtin: BuiltinProperty,
type_name: TypeInfo,
type_span: Span,
span: Span,
},
BuiltinGenerateUid {
span: Span,
},
}
Expand description
Represents a parsed, but not yet type checked, Expression.
Variants
Literal
FunctionApplication
LazyOperator
VariableExpression
Tuple
TupleIndex
Array
StructExpression
Fields
struct_name: CallPath
type_arguments: Vec<TypeArgument>
fields: Vec<StructExpressionField>
span: Span
CodeBlock
IfExp
MatchExp
AsmExpression
MethodApplication
Fields
method_name: MethodName
contract_call_params: Vec<StructExpressionField>
arguments: Vec<Expression>
type_arguments: Vec<TypeArgument>
span: Span
SubfieldExpression
A subfield expression is anything of the form:
<ident>.<ident>
DelineatedPath
A delineated path is anything of the form:
<ident>::<ident>
Where there are n >= 2
idents.
These could be either enum variant constructions, or they could be
references to some sort of module in the module tree.
For example, a reference to a module:
std::ops::add
And, an enum declaration:
enum MyEnum {
Variant1,
Variant2
}
MyEnum::Variant1
AbiCast
A cast of a hash to an ABI for calling a contract.
ArrayIndex
StorageAccess
SizeOfVal
BuiltinGetTypeProperty
BuiltinGenerateUid
Fields
span: Span
Trait Implementations
sourceimpl Clone for Expression
impl Clone for Expression
sourcefn clone(&self) -> Expression
fn clone(&self) -> Expression
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl RefUnwindSafe for Expression
impl Send for Expression
impl Sync for Expression
impl Unpin for Expression
impl UnwindSafe for Expression
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more