Struct fadroma::ensemble::ExecuteResponse  
source · [−]pub struct ExecuteResponse {
    pub sender: HumanAddr,
    pub target: HumanAddr,
    pub msg: Binary,
    pub response: HandleResponse,
    pub sent: Vec<Response>,
}Fields
sender: HumanAddrThe address that triggered the instantiation.
target: HumanAddrThe contract that was called.
msg: BinaryThe execute message that was sent.
response: HandleResponseThe execute response returned by the contract.
sent: Vec<Response>The responses for any messages that the executed contract initiated.
Implementations
Trait Implementations
sourceimpl Clone for ExecuteResponse
 
impl Clone for ExecuteResponse
sourcefn clone(&self) -> ExecuteResponse
 
fn clone(&self) -> ExecuteResponse
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 ExecuteResponse
 
impl Debug for ExecuteResponse
sourceimpl From<ExecuteResponse> for Response
 
impl From<ExecuteResponse> for Response
sourcefn from(value: ExecuteResponse) -> Self
 
fn from(value: ExecuteResponse) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ExecuteResponse> for ExecuteResponse
 
impl PartialEq<ExecuteResponse> for ExecuteResponse
sourcefn eq(&self, other: &ExecuteResponse) -> bool
 
fn eq(&self, other: &ExecuteResponse) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ExecuteResponse) -> bool
 
fn ne(&self, other: &ExecuteResponse) -> bool
This method tests for !=.
impl StructuralPartialEq for ExecuteResponse
Auto Trait Implementations
impl RefUnwindSafe for ExecuteResponse
impl Send for ExecuteResponse
impl Sync for ExecuteResponse
impl Unpin for ExecuteResponse
impl UnwindSafe for ExecuteResponse
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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more