pub struct PartialExecutionOutcome {
pub receipt_ids: Vec<CryptoHash>,
pub gas_burnt: Gas,
pub tokens_burnt: Balance,
pub executor_id: AccountId,
pub status: PartialExecutionStatus,
}Expand description
ExecutionOutcome for proof. Excludes logs and metadata
Fields§
§receipt_ids: Vec<CryptoHash>§gas_burnt: Gas§tokens_burnt: Balance§executor_id: AccountId§status: PartialExecutionStatusTrait Implementations§
source§impl BorshDeserialize for PartialExecutionOutcome
impl BorshDeserialize for PartialExecutionOutcome
fn deserialize_reader<__R: Read>(reader: &mut __R) -> Result<Self, Error>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl Clone for PartialExecutionOutcome
impl Clone for PartialExecutionOutcome
source§fn clone(&self) -> PartialExecutionOutcome
fn clone(&self) -> PartialExecutionOutcome
Returns a copy 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 From<&ExecutionOutcome> for PartialExecutionOutcome
impl From<&ExecutionOutcome> for PartialExecutionOutcome
source§fn from(outcome: &ExecutionOutcome) -> Self
fn from(outcome: &ExecutionOutcome) -> Self
Converts to this type from the input type.
source§impl From<&ExecutionOutcomeView> for PartialExecutionOutcome
impl From<&ExecutionOutcomeView> for PartialExecutionOutcome
source§fn from(outcome: &ExecutionOutcomeView) -> Self
fn from(outcome: &ExecutionOutcomeView) -> Self
Converts to this type from the input type.
source§impl PartialEq for PartialExecutionOutcome
impl PartialEq for PartialExecutionOutcome
source§fn eq(&self, other: &PartialExecutionOutcome) -> bool
fn eq(&self, other: &PartialExecutionOutcome) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for PartialExecutionOutcome
Auto Trait Implementations§
impl Freeze for PartialExecutionOutcome
impl RefUnwindSafe for PartialExecutionOutcome
impl Send for PartialExecutionOutcome
impl Sync for PartialExecutionOutcome
impl Unpin for PartialExecutionOutcome
impl UnwindSafe for PartialExecutionOutcome
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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