pub struct InvokeOutput {
pub status_code: i32,
pub payload: Option<Vec<u8>>,
pub log_result: Option<String>,
pub executed_version: Option<String>,
}Fields§
§status_code: i32§payload: Option<Vec<u8>>§log_result: Option<String>§executed_version: Option<String>Trait Implementations§
Source§impl Clone for InvokeOutput
impl Clone for InvokeOutput
Source§fn clone(&self) -> InvokeOutput
fn clone(&self) -> InvokeOutput
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 moreAuto Trait Implementations§
impl Freeze for InvokeOutput
impl RefUnwindSafe for InvokeOutput
impl Send for InvokeOutput
impl Sync for InvokeOutput
impl Unpin for InvokeOutput
impl UnwindSafe for InvokeOutput
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