pub struct TransactionProcessed {
pub hash: HashString,
pub initiator_addr: PublicKeyString,
pub timestamp: String,
pub ttl: String,
pub block_hash: String,
pub execution_result: ExecutionResult,
pub messages: Vec<Messages>,
}
Expand description
Represents processed deploy information.
Fields§
§hash: HashString
§initiator_addr: PublicKeyString
§timestamp: String
§ttl: String
§block_hash: String
§execution_result: ExecutionResult
Result of the execution, either Success or Failure.
messages: Vec<Messages>
Trait Implementations§
source§impl Clone for TransactionProcessed
impl Clone for TransactionProcessed
source§fn clone(&self) -> TransactionProcessed
fn clone(&self) -> TransactionProcessed
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 Debug for TransactionProcessed
impl Debug for TransactionProcessed
source§impl Default for TransactionProcessed
impl Default for TransactionProcessed
source§fn default() -> TransactionProcessed
fn default() -> TransactionProcessed
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TransactionProcessed
impl<'de> Deserialize<'de> for TransactionProcessed
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
source§impl From<TransactionProcessed> for JsValue
impl From<TransactionProcessed> for JsValue
source§fn from(value: TransactionProcessed) -> Self
fn from(value: TransactionProcessed) -> Self
Converts to this type from the input type.
source§impl FromWasmAbi for TransactionProcessed
impl FromWasmAbi for TransactionProcessed
source§impl IntoWasmAbi for TransactionProcessed
impl IntoWasmAbi for TransactionProcessed
source§impl RefFromWasmAbi for TransactionProcessed
impl RefFromWasmAbi for TransactionProcessed
§type Anchor = RcRef<TransactionProcessed>
type Anchor = RcRef<TransactionProcessed>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.source§impl Serialize for TransactionProcessed
impl Serialize for TransactionProcessed
source§impl VectorFromWasmAbi for TransactionProcessed
impl VectorFromWasmAbi for TransactionProcessed
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[TransactionProcessed]>
source§impl VectorIntoJsValue for TransactionProcessed
impl VectorIntoJsValue for TransactionProcessed
fn vector_into_jsvalue(vector: Box<[TransactionProcessed]>) -> JsValue
source§impl VectorIntoWasmAbi for TransactionProcessed
impl VectorIntoWasmAbi for TransactionProcessed
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[TransactionProcessed]>) -> Self::Abi
source§impl WasmDescribeVector for TransactionProcessed
impl WasmDescribeVector for TransactionProcessed
Auto Trait Implementations§
impl Freeze for TransactionProcessed
impl RefUnwindSafe for TransactionProcessed
impl Send for TransactionProcessed
impl Sync for TransactionProcessed
impl Unpin for TransactionProcessed
impl UnwindSafe for TransactionProcessed
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.