pub struct ExecutionExpr {
pub kind: ExecutionExprKind,
pub ty: ValueType,
pub constant: Option<ConstValue>,
pub span: Span,
}Fields§
§kind: ExecutionExprKind§ty: ValueType§constant: Option<ConstValue>§span: SpanTrait Implementations§
Source§impl Clone for ExecutionExpr
impl Clone for ExecutionExpr
Source§fn clone(&self) -> ExecutionExpr
fn clone(&self) -> ExecutionExpr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExecutionExpr
impl Debug for ExecutionExpr
Source§impl PartialEq for ExecutionExpr
impl PartialEq for ExecutionExpr
Source§fn eq(&self, other: &ExecutionExpr) -> bool
fn eq(&self, other: &ExecutionExpr) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionExpr
Auto Trait Implementations§
impl Freeze for ExecutionExpr
impl RefUnwindSafe for ExecutionExpr
impl Send for ExecutionExpr
impl Sync for ExecutionExpr
impl Unpin for ExecutionExpr
impl UnsafeUnpin for ExecutionExpr
impl UnwindSafe for ExecutionExpr
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