pub struct ExecutionConstant {
pub symbol: SymbolId,
pub name: String,
pub value: ConstValue,
pub span: Span,
}Fields§
§symbol: SymbolId§name: String§value: ConstValue§span: SpanTrait Implementations§
Source§impl Clone for ExecutionConstant
impl Clone for ExecutionConstant
Source§fn clone(&self) -> ExecutionConstant
fn clone(&self) -> ExecutionConstant
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 ExecutionConstant
impl Debug for ExecutionConstant
Source§impl PartialEq for ExecutionConstant
impl PartialEq for ExecutionConstant
Source§fn eq(&self, other: &ExecutionConstant) -> bool
fn eq(&self, other: &ExecutionConstant) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExecutionConstant
Auto Trait Implementations§
impl Freeze for ExecutionConstant
impl RefUnwindSafe for ExecutionConstant
impl Send for ExecutionConstant
impl Sync for ExecutionConstant
impl Unpin for ExecutionConstant
impl UnsafeUnpin for ExecutionConstant
impl UnwindSafe for ExecutionConstant
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