Struct stacks_rpc_client::clarity::vm::ast::ContractAST
pub struct ContractAST {
pub contract_identifier: QualifiedContractIdentifier,
pub pre_expressions: Vec<PreSymbolicExpression>,
pub expressions: Vec<SymbolicExpression>,
pub top_level_expression_sorting: Option<Vec<usize>>,
pub referenced_traits: HashMap<ClarityName, TraitDefinition>,
pub implemented_traits: HashSet<TraitIdentifier>,
}
Fields§
§contract_identifier: QualifiedContractIdentifier
§pre_expressions: Vec<PreSymbolicExpression>
§expressions: Vec<SymbolicExpression>
§top_level_expression_sorting: Option<Vec<usize>>
§referenced_traits: HashMap<ClarityName, TraitDefinition>
§implemented_traits: HashSet<TraitIdentifier>
Implementations§
§impl ContractAST
impl ContractAST
pub fn new( contract_identifier: QualifiedContractIdentifier, pre_expressions: Vec<PreSymbolicExpression> ) -> ContractAST
pub fn pre_expressions_drain(&mut self) -> PreExpressionsDrain ⓘ
pub fn add_implemented_trait(&mut self, trait_identifier: TraitIdentifier)
pub fn get_referenced_trait(&self, name: &str) -> Option<&TraitDefinition>
Trait Implementations§
§impl Clone for ContractAST
impl Clone for ContractAST
§fn clone(&self) -> ContractAST
fn clone(&self) -> ContractAST
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 ContractAST
impl Debug for ContractAST
§impl<'de> Deserialize<'de> for ContractAST
impl<'de> Deserialize<'de> for ContractAST
§fn deserialize<__D>(
__deserializer: __D
) -> Result<ContractAST, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<ContractAST, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq for ContractAST
impl PartialEq for ContractAST
§fn eq(&self, other: &ContractAST) -> bool
fn eq(&self, other: &ContractAST) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for ContractAST
impl Serialize for ContractAST
§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 Eq for ContractAST
impl StructuralEq for ContractAST
impl StructuralPartialEq for ContractAST
Auto Trait Implementations§
impl RefUnwindSafe for ContractAST
impl Send for ContractAST
impl Sync for ContractAST
impl Unpin for ContractAST
impl UnwindSafe for ContractAST
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.