[][src]Enum cw1::query::Cw1QueryMsg

pub enum Cw1QueryMsg<T = Empty> where
    T: Clone + Debug + PartialEq + JsonSchema
{ CanSend { sender: HumanAddr, msg: CosmosMsg<T>, }, }

Variants

CanSend

Checks permissions of the caller on this proxy. If CanSend returns true then a call to Execute with the same message, from the given sender, before any further state changes, should also succeed.

Fields of CanSend

sender: HumanAddrmsg: CosmosMsg<T>

Trait Implementations

impl<T: Clone> Clone for Cw1QueryMsg<T> where
    T: Clone + Debug + PartialEq + JsonSchema
[src]

impl<T: Debug> Debug for Cw1QueryMsg<T> where
    T: Clone + Debug + PartialEq + JsonSchema
[src]

impl<'de, T> Deserialize<'de> for Cw1QueryMsg<T> where
    T: Clone + Debug + PartialEq + JsonSchema,
    T: Deserialize<'de>, 
[src]

impl<T: JsonSchema> JsonSchema for Cw1QueryMsg<T> where
    T: Clone + Debug + PartialEq + JsonSchema
[src]

impl<T: PartialEq> PartialEq<Cw1QueryMsg<T>> for Cw1QueryMsg<T> where
    T: Clone + Debug + PartialEq + JsonSchema
[src]

impl<T> Serialize for Cw1QueryMsg<T> where
    T: Clone + Debug + PartialEq + JsonSchema,
    T: Serialize
[src]

impl<T> StructuralPartialEq for Cw1QueryMsg<T> where
    T: Clone + Debug + PartialEq + JsonSchema
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Cw1QueryMsg<T> where
    T: RefUnwindSafe

impl<T> Send for Cw1QueryMsg<T> where
    T: Send

impl<T> Sync for Cw1QueryMsg<T> where
    T: Sync

impl<T> Unpin for Cw1QueryMsg<T> where
    T: Unpin

impl<T> UnwindSafe for Cw1QueryMsg<T> where
    T: UnwindSafe

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> 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.