Struct stacks_rpc_client::clarity::vm::ParsedContract
pub struct ParsedContract {
pub contract_identifier: String,
pub code: String,
pub function_args: BTreeMap<String, Vec<String>>,
pub ast: ContractAST,
pub analysis: ContractAnalysis,
}
Fields§
§contract_identifier: String
§code: String
§function_args: BTreeMap<String, Vec<String>>
§ast: ContractAST
§analysis: ContractAnalysis
Trait Implementations§
§impl Clone for ParsedContract
impl Clone for ParsedContract
§fn clone(&self) -> ParsedContract
fn clone(&self) -> ParsedContract
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 moreAuto Trait Implementations§
impl RefUnwindSafe for ParsedContract
impl Send for ParsedContract
impl Sync for ParsedContract
impl Unpin for ParsedContract
impl UnwindSafe for ParsedContract
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