Struct substrate_subxt::ExtrinsicSuccess[][src]

pub struct ExtrinsicSuccess<T: System> {
    pub block: T::Hash,
    pub extrinsic: T::Hash,
    pub events: Vec<RawEvent>,
}

Captures data for when an extrinsic is successfully included in a block

Fields

block: T::Hash

Block hash.

extrinsic: T::Hash

Extrinsic hash.

events: Vec<RawEvent>

Raw runtime events, can be decoded by the caller.

Implementations

impl<T: System> ExtrinsicSuccess<T>[src]

pub fn find_event_raw(&self, module: &str, variant: &str) -> Option<&RawEvent>[src]

Find the Event for the given module/variant, with raw encoded event data. Returns None if the Event is not found.

pub fn find_event<E: Event<T>>(&self) -> Result<Option<E>, CodecError>[src]

Find the Event for the given module/variant, attempting to decode the event data. Returns None if the Event is not found. Returns Err if the data fails to decode into the supplied type.

Trait Implementations

impl<T: Contracts> CodeStoredEventExt<T> for ExtrinsicSuccess<T>[src]

impl<T: System> CodeUpdatedEventExt<T> for ExtrinsicSuccess<T>[src]

impl<T: Contracts> ContractExecutionEventExt<T> for ExtrinsicSuccess<T>[src]

impl<T: Debug + System> Debug for ExtrinsicSuccess<T> where
    T::Hash: Debug,
    T::Hash: Debug
[src]

impl<T: System> ExtrinsicFailedEventExt<T> for ExtrinsicSuccess<T>[src]

impl<T: System> ExtrinsicSuccessEventExt<T> for ExtrinsicSuccess<T>[src]

impl<T: Contracts> InstantiatedEventExt<T> for ExtrinsicSuccess<T>[src]

impl<T: System> KilledAccountEventExt<T> for ExtrinsicSuccess<T>[src]

impl<T: System> NewAccountEventExt<T> for ExtrinsicSuccess<T>[src]

impl<T: Balances> TransferEventExt<T> for ExtrinsicSuccess<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for ExtrinsicSuccess<T> where
    <T as System>::Hash: RefUnwindSafe
[src]

impl<T> Send for ExtrinsicSuccess<T>[src]

impl<T> Sync for ExtrinsicSuccess<T>[src]

impl<T> Unpin for ExtrinsicSuccess<T> where
    <T as System>::Hash: Unpin
[src]

impl<T> UnwindSafe for ExtrinsicSuccess<T> where
    <T as System>::Hash: UnwindSafe
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CheckedConversion for T[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IsType<T> for T[src]

impl<T, Outer> IsWrappedBy<Outer> for T where
    T: From<Outer>,
    Outer: AsRef<T> + AsMut<T> + From<T>, 
[src]

pub fn from_ref(outer: &Outer) -> &T[src]

Get a reference to the inner from the outer.

pub fn from_mut(outer: &mut Outer) -> &mut T[src]

Get a mutable reference to the inner from the outer.

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeDebug for T where
    T: Debug

impl<T> MaybeRefUnwindSafe for T where
    T: RefUnwindSafe

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SaturatedConversion for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<S, T> UncheckedInto<T> for S where
    T: UncheckedFrom<S>, 
[src]

impl<T, S> UniqueSaturatedInto<T> for S where
    T: Bounded,
    S: TryInto<T>, 

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,