Struct tg3::Tg3Contract
source · [−]pub struct Tg3Contract(pub Addr);Expand description
Tg3Contract is a wrapper around Addr that provides a lot of helpers for working with this.
Tuple Fields
0: AddrImplementations
sourceimpl Tg3Contract
impl Tg3Contract
pub fn addr(&self) -> Addr
pub fn encode_msg(&self, msg: Tg3ExecuteMsg) -> StdResult<CosmosMsg<TgradeMsg>>
sourcepub fn proposal(
&self,
title: impl Into<String>,
description: impl Into<String>,
msgs: Vec<CosmosMsg<TgradeMsg>>,
earliest: Option<Expiration>,
latest: Option<Expiration>
) -> StdResult<CosmosMsg<TgradeMsg>>
pub fn proposal(
&self,
title: impl Into<String>,
description: impl Into<String>,
msgs: Vec<CosmosMsg<TgradeMsg>>,
earliest: Option<Expiration>,
latest: Option<Expiration>
) -> StdResult<CosmosMsg<TgradeMsg>>
helper doesn’t support custom messages now
pub fn vote(
&self,
proposal_id: u64,
vote: Vote
) -> StdResult<CosmosMsg<TgradeMsg>>
pub fn execute(&self, proposal_id: u64) -> StdResult<CosmosMsg<TgradeMsg>>
pub fn close(&self, proposal_id: u64) -> StdResult<CosmosMsg<TgradeMsg>>
Trait Implementations
sourceimpl Clone for Tg3Contract
impl Clone for Tg3Contract
sourcefn clone(&self) -> Tg3Contract
fn clone(&self) -> Tg3Contract
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for Tg3Contract
impl Debug for Tg3Contract
sourceimpl<'de> Deserialize<'de> for Tg3Contract
impl<'de> Deserialize<'de> for Tg3Contract
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl JsonSchema for Tg3Contract
impl JsonSchema for Tg3Contract
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
sourceimpl PartialEq<Tg3Contract> for Tg3Contract
impl PartialEq<Tg3Contract> for Tg3Contract
sourcefn eq(&self, other: &Tg3Contract) -> bool
fn eq(&self, other: &Tg3Contract) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &Tg3Contract) -> bool
fn ne(&self, other: &Tg3Contract) -> bool
This method tests for !=.
sourceimpl Serialize for Tg3Contract
impl Serialize for Tg3Contract
impl StructuralPartialEq for Tg3Contract
Auto Trait Implementations
impl RefUnwindSafe for Tg3Contract
impl Send for Tg3Contract
impl Sync for Tg3Contract
impl Unpin for Tg3Contract
impl UnwindSafe for Tg3Contract
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more