[][src]Struct clarity_repl::clarity::analysis::contract_interface_builder::ContractInterface

pub struct ContractInterface {
    pub functions: Vec<ContractInterfaceFunction>,
    pub variables: Vec<ContractInterfaceVariable>,
    pub maps: Vec<ContractInterfaceMap>,
    pub fungible_tokens: Vec<ContractInterfaceFungibleTokens>,
    pub non_fungible_tokens: Vec<ContractInterfaceNonFungibleTokens>,
}

Fields

functions: Vec<ContractInterfaceFunction>variables: Vec<ContractInterfaceVariable>maps: Vec<ContractInterfaceMap>fungible_tokens: Vec<ContractInterfaceFungibleTokens>non_fungible_tokens: Vec<ContractInterfaceNonFungibleTokens>

Implementations

impl ContractInterface[src]

pub fn new() -> Self[src]

pub fn serialize(&self) -> String[src]

Trait Implementations

impl Clone for ContractInterface[src]

impl Debug for ContractInterface[src]

impl<'de> Deserialize<'de> for ContractInterface[src]

impl PartialEq<ContractInterface> for ContractInterface[src]

impl Serialize for ContractInterface[src]

impl StructuralPartialEq for ContractInterface[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.