pub struct Message {
pub url: String,
pub message: Vec<MesssageDetails>,
}Fields§
§url: String§message: Vec<MesssageDetails>Implementations§
Source§impl Message
impl Message
pub fn build_authz_message( granter: String, grantee: String, authorization: String, _expiration: String, ) -> Message
pub fn build_revoke_message( granter: String, grantee: String, msg_type_url: String, ) -> Message
pub fn build_contract_migrate( sender: String, contract: String, code_id: u64, msg: String, ) -> Message
pub fn build_contract_instantiate( sender: String, admin: String, label: String, code_id: u64, msg: String, ) -> Message
Trait Implementations§
impl Eq for Message
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.