pub enum Cw1QueryMsg<T = Empty>{
CanExecute {
sender: String,
msg: CosmosMsg<T>,
},
}Variants§
CanExecute
Checks permissions of the caller on this proxy.
If CanExecute returns true then a call to Execute with the same message,
from the given sender, before any further state changes, should also succeed.
Trait Implementations§
Source§impl<T> Clone for Cw1QueryMsg<T>
impl<T> Clone for Cw1QueryMsg<T>
Source§fn clone(&self) -> Cw1QueryMsg<T>
fn clone(&self) -> Cw1QueryMsg<T>
Returns a duplicate 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 moreSource§impl<T> Debug for Cw1QueryMsg<T>
impl<T> Debug for Cw1QueryMsg<T>
Source§impl<'de, T> Deserialize<'de> for Cw1QueryMsg<T>
impl<'de, T> Deserialize<'de> for Cw1QueryMsg<T>
Source§fn 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
Source§impl<T> JsonSchema for Cw1QueryMsg<T>
impl<T> JsonSchema for Cw1QueryMsg<T>
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 moreSource§impl<T> PartialEq for Cw1QueryMsg<T>
impl<T> PartialEq for Cw1QueryMsg<T>
Source§impl<T> Serialize for Cw1QueryMsg<T>
impl<T> Serialize for Cw1QueryMsg<T>
impl<T> StructuralPartialEq for Cw1QueryMsg<T>
Auto Trait Implementations§
impl<T> Freeze for Cw1QueryMsg<T>where
T: Freeze,
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§
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