pub struct DeployProcessed {
pub deploy_hash: String,
pub account: String,
pub timestamp: String,
pub ttl: String,
pub dependencies: Vec<String>,
pub block_hash: String,
pub execution_result: ExecutionResult,
}
Expand description
Represents processed deploy information.
Fields§
§deploy_hash: String
§account: String
§timestamp: String
§ttl: String
§dependencies: Vec<String>
§block_hash: String
§execution_result: ExecutionResult
Result of the execution, either Success or Failure.
Trait Implementations§
source§impl Clone for DeployProcessed
impl Clone for DeployProcessed
source§fn clone(&self) -> DeployProcessed
fn clone(&self) -> DeployProcessed
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 DeployProcessed
impl Debug for DeployProcessed
source§impl Default for DeployProcessed
impl Default for DeployProcessed
source§fn default() -> DeployProcessed
fn default() -> DeployProcessed
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for DeployProcessed
impl<'de> Deserialize<'de> for DeployProcessed
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<DeployProcessed> for JsValue
impl From<DeployProcessed> for JsValue
source§fn from(value: DeployProcessed) -> Self
fn from(value: DeployProcessed) -> Self
Converts to this type from the input type.
source§impl FromWasmAbi for DeployProcessed
impl FromWasmAbi for DeployProcessed
source§impl IntoWasmAbi for DeployProcessed
impl IntoWasmAbi for DeployProcessed
source§impl LongRefFromWasmAbi for DeployProcessed
impl LongRefFromWasmAbi for DeployProcessed
source§impl OptionFromWasmAbi for DeployProcessed
impl OptionFromWasmAbi for DeployProcessed
source§impl OptionIntoWasmAbi for DeployProcessed
impl OptionIntoWasmAbi for DeployProcessed
source§impl RefFromWasmAbi for DeployProcessed
impl RefFromWasmAbi for DeployProcessed
source§type Anchor = RcRef<DeployProcessed>
type Anchor = RcRef<DeployProcessed>
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 RefMutFromWasmAbi for DeployProcessed
impl RefMutFromWasmAbi for DeployProcessed
source§impl Serialize for DeployProcessed
impl Serialize for DeployProcessed
source§impl TryFromJsValue for DeployProcessed
impl TryFromJsValue for DeployProcessed
source§impl VectorFromWasmAbi for DeployProcessed
impl VectorFromWasmAbi for DeployProcessed
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[DeployProcessed]>
source§impl VectorIntoJsValue for DeployProcessed
impl VectorIntoJsValue for DeployProcessed
fn vector_into_jsvalue(vector: Box<[DeployProcessed]>) -> JsValue
source§impl VectorIntoWasmAbi for DeployProcessed
impl VectorIntoWasmAbi for DeployProcessed
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[DeployProcessed]>) -> Self::Abi
source§impl WasmDescribeVector for DeployProcessed
impl WasmDescribeVector for DeployProcessed
Auto Trait Implementations§
impl Freeze for DeployProcessed
impl RefUnwindSafe for DeployProcessed
impl Send for DeployProcessed
impl Sync for DeployProcessed
impl Unpin for DeployProcessed
impl UnwindSafe for DeployProcessed
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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,
source§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
.