pub struct LiveExecutionReceipt {Show 13 fields
pub schema_version: String,
pub accepted: bool,
pub status: String,
pub reason: String,
pub as_of: Option<f64>,
pub request: BTreeMap<String, Value>,
pub request_hash: String,
pub operator_context_hash: Option<String>,
pub trace_hash: Option<String>,
pub idempotency_hash: Option<String>,
pub venue_ack_hash: Option<String>,
pub receipt_hash: String,
pub extra: BTreeMap<String, Value>,
}Fields§
§schema_version: String§accepted: bool§status: String§reason: String§as_of: Option<f64>§request: BTreeMap<String, Value>§request_hash: String§operator_context_hash: Option<String>§trace_hash: Option<String>§idempotency_hash: Option<String>§venue_ack_hash: Option<String>§receipt_hash: String§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for LiveExecutionReceipt
impl Clone for LiveExecutionReceipt
Source§fn clone(&self) -> LiveExecutionReceipt
fn clone(&self) -> LiveExecutionReceipt
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 Debug for LiveExecutionReceipt
impl Debug for LiveExecutionReceipt
Source§impl Default for LiveExecutionReceipt
impl Default for LiveExecutionReceipt
Source§fn default() -> LiveExecutionReceipt
fn default() -> LiveExecutionReceipt
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LiveExecutionReceiptwhere
LiveExecutionReceipt: Default,
impl<'de> Deserialize<'de> for LiveExecutionReceiptwhere
LiveExecutionReceipt: Default,
Source§fn 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
Auto Trait Implementations§
impl Freeze for LiveExecutionReceipt
impl RefUnwindSafe for LiveExecutionReceipt
impl Send for LiveExecutionReceipt
impl Sync for LiveExecutionReceipt
impl Unpin for LiveExecutionReceipt
impl UnsafeUnpin for LiveExecutionReceipt
impl UnwindSafe for LiveExecutionReceipt
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