Struct cosmwasm_std::MessageInfo
source · [−]Expand description
Additional information from MsgInstantiateContract and MsgExecuteContract, which is passed
along with the contract execution message into the instantiate
and execute
entry points.
It contains the essential info for authorization - identity of the call, and payment.
Fields
sender: Addr
The sender
field from MsgInstantiateContract
and MsgExecuteContract
.
You can think of this as the address that initiated the action (i.e. the message). What that
means exactly heavily depends on the application.
The x/wasm module ensures that the sender address signed the transaction or is otherwise authorized to send the message.
Additional signers of the transaction that are either needed for other messages or contain unnecessary signatures are not propagated into the contract.
funds: Vec<Coin>
The funds that are sent to the contract as part of MsgInstantiateContract
or MsgExecuteContract
. The transfer is processed in bank before the contract
is executed such that the new balance is visible during contract execution.
Trait Implementations
sourceimpl Clone for MessageInfo
impl Clone for MessageInfo
sourcefn clone(&self) -> MessageInfo
fn clone(&self) -> MessageInfo
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 MessageInfo
impl Debug for MessageInfo
sourceimpl<'de> Deserialize<'de> for MessageInfo
impl<'de> Deserialize<'de> for MessageInfo
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 PartialEq<MessageInfo> for MessageInfo
impl PartialEq<MessageInfo> for MessageInfo
sourcefn eq(&self, other: &MessageInfo) -> bool
fn eq(&self, other: &MessageInfo) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &MessageInfo) -> bool
fn ne(&self, other: &MessageInfo) -> bool
This method tests for !=
.
sourceimpl Serialize for MessageInfo
impl Serialize for MessageInfo
impl StructuralPartialEq for MessageInfo
Auto Trait Implementations
impl RefUnwindSafe for MessageInfo
impl Send for MessageInfo
impl Sync for MessageInfo
impl Unpin for MessageInfo
impl UnwindSafe for MessageInfo
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