Struct casper_rust_wasm_sdk::watcher::Body
source · pub struct Body {
pub transaction_processed: Option<TransactionProcessed>,
}
Expand description
Represents the body of an event, containing processed deploy information.
Fields§
§transaction_processed: Option<TransactionProcessed>
Implementations§
source§impl Body
impl Body
pub fn get_deploy_processed(&self) -> Option<TransactionProcessed>
👎Deprecated: prefer ‘get_transaction_processed’
pub fn get_transaction_processed(&self) -> Option<TransactionProcessed>
Trait Implementations§
source§impl<'de> Deserialize<'de> for Body
impl<'de> Deserialize<'de> for Body
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 FromWasmAbi for Body
impl FromWasmAbi for Body
source§impl IntoWasmAbi for Body
impl IntoWasmAbi for Body
source§impl LongRefFromWasmAbi for Body
impl LongRefFromWasmAbi for Body
source§impl OptionFromWasmAbi for Body
impl OptionFromWasmAbi for Body
source§impl OptionIntoWasmAbi for Body
impl OptionIntoWasmAbi for Body
source§impl RefFromWasmAbi for Body
impl RefFromWasmAbi for Body
source§impl RefMutFromWasmAbi for Body
impl RefMutFromWasmAbi for Body
source§impl TryFromJsValue for Body
impl TryFromJsValue for Body
source§impl VectorFromWasmAbi for Body
impl VectorFromWasmAbi for Body
source§impl VectorIntoWasmAbi for Body
impl VectorIntoWasmAbi for Body
Auto Trait Implementations§
impl Freeze for Body
impl RefUnwindSafe for Body
impl Send for Body
impl Sync for Body
impl Unpin for Body
impl UnwindSafe for Body
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
.