Struct stacks_rpc_client::clarity::vm::SymbolicExpression
pub struct SymbolicExpression {
pub expr: SymbolicExpressionType,
pub id: u64,
pub span: Span,
}
Fields§
§expr: SymbolicExpressionType
§id: u64
§span: Span
Implementations§
§impl SymbolicExpression
impl SymbolicExpression
pub fn set_span( &mut self, start_line: u32, start_column: u32, end_line: u32, end_column: u32 )
pub fn atom_value(val: Value) -> SymbolicExpression
pub fn atom(val: ClarityName) -> SymbolicExpression
pub fn literal_value(val: Value) -> SymbolicExpression
pub fn list(val: Box<[SymbolicExpression]>) -> SymbolicExpression
pub fn trait_reference( val: ClarityName, trait_definition: TraitDefinition ) -> SymbolicExpression
pub fn field(val: TraitIdentifier) -> SymbolicExpression
pub fn match_list(&self) -> Option<&[SymbolicExpression]>
pub fn match_atom(&self) -> Option<&ClarityName>
pub fn match_atom_value(&self) -> Option<&Value>
pub fn match_literal_value(&self) -> Option<&Value>
pub fn match_trait_reference(&self) -> Option<&ClarityName>
pub fn match_field(&self) -> Option<&TraitIdentifier>
Trait Implementations§
§impl Clone for SymbolicExpression
impl Clone for SymbolicExpression
§fn clone(&self) -> SymbolicExpression
fn clone(&self) -> SymbolicExpression
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§impl Debug for SymbolicExpression
impl Debug for SymbolicExpression
§impl<'de> Deserialize<'de> for SymbolicExpression
impl<'de> Deserialize<'de> for SymbolicExpression
§fn deserialize<__D>(
__deserializer: __D
) -> Result<SymbolicExpression, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<SymbolicExpression, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl Display for SymbolicExpression
impl Display for SymbolicExpression
§impl PartialEq for SymbolicExpression
impl PartialEq for SymbolicExpression
§fn eq(&self, other: &SymbolicExpression) -> bool
fn eq(&self, other: &SymbolicExpression) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for SymbolicExpression
impl Serialize for SymbolicExpression
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
§impl SymbolicExpressionCommon for SymbolicExpression
impl SymbolicExpressionCommon for SymbolicExpression
type S = SymbolicExpression
fn set_id(&mut self, id: u64)
fn match_list_mut(&mut self) -> Option<&mut [SymbolicExpression]>
impl Eq for SymbolicExpression
impl StructuralEq for SymbolicExpression
impl StructuralPartialEq for SymbolicExpression
Auto Trait Implementations§
impl RefUnwindSafe for SymbolicExpression
impl Send for SymbolicExpression
impl Sync for SymbolicExpression
impl Unpin for SymbolicExpression
impl UnwindSafe for SymbolicExpression
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.