pub struct ExecuteResponse<R>{
pub data: R,
pub raw_data: Vec<u8>,
pub events: Vec<Event>,
pub gas_info: GasInfo,
}
Fields§
§data: R
§raw_data: Vec<u8>
§events: Vec<Event>
§gas_info: GasInfo
Trait Implementations§
Source§impl<R> Clone for ExecuteResponse<R>
impl<R> Clone for ExecuteResponse<R>
Source§fn clone(&self) -> ExecuteResponse<R>
fn clone(&self) -> ExecuteResponse<R>
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<R> Debug for ExecuteResponse<R>
impl<R> Debug for ExecuteResponse<R>
Source§impl<R> PartialEq for ExecuteResponse<R>
impl<R> PartialEq for ExecuteResponse<R>
Source§impl<R> TryFrom<ResponseDeliverTx> for ExecuteResponse<R>
impl<R> TryFrom<ResponseDeliverTx> for ExecuteResponse<R>
Source§type Error = RunnerError
type Error = RunnerError
The type returned in the event of a conversion error.
impl<R> StructuralPartialEq for ExecuteResponse<R>
Auto Trait Implementations§
impl<R> Freeze for ExecuteResponse<R>where
R: Freeze,
impl<R> RefUnwindSafe for ExecuteResponse<R>where
R: RefUnwindSafe,
impl<R> Send for ExecuteResponse<R>
impl<R> Sync for ExecuteResponse<R>
impl<R> Unpin for ExecuteResponse<R>where
R: Unpin,
impl<R> UnwindSafe for ExecuteResponse<R>where
R: 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