pub struct LiveExecutionReceipts {
pub schema_version: String,
pub generated_at: Option<String>,
pub mode: String,
pub operator_context: OperatorContext,
pub summary: BTreeMap<String, Value>,
pub receipts: Vec<LiveExecutionReceipt>,
pub privacy: BTreeMap<String, Value>,
pub receipts_hash: String,
pub extra: BTreeMap<String, Value>,
}Fields§
§schema_version: String§generated_at: Option<String>§mode: String§operator_context: OperatorContext§summary: BTreeMap<String, Value>§receipts: Vec<LiveExecutionReceipt>§privacy: BTreeMap<String, Value>§receipts_hash: String§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for LiveExecutionReceipts
impl Clone for LiveExecutionReceipts
Source§fn clone(&self) -> LiveExecutionReceipts
fn clone(&self) -> LiveExecutionReceipts
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 LiveExecutionReceipts
impl Debug for LiveExecutionReceipts
Source§impl Default for LiveExecutionReceipts
impl Default for LiveExecutionReceipts
Source§fn default() -> LiveExecutionReceipts
fn default() -> LiveExecutionReceipts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LiveExecutionReceiptswhere
LiveExecutionReceipts: Default,
impl<'de> Deserialize<'de> for LiveExecutionReceiptswhere
LiveExecutionReceipts: 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 LiveExecutionReceipts
impl RefUnwindSafe for LiveExecutionReceipts
impl Send for LiveExecutionReceipts
impl Sync for LiveExecutionReceipts
impl Unpin for LiveExecutionReceipts
impl UnsafeUnpin for LiveExecutionReceipts
impl UnwindSafe for LiveExecutionReceipts
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