Struct tc_client_api::backend::ClientImportOperation[][src]

pub struct ClientImportOperation<Block: BlockT, B: Backend<Block>> {
    pub op: B::BlockImportOperation,
    pub notify_imported: Option<ImportSummary<Block>>,
    pub notify_finalized: Vec<Block::Hash>,
}

Import operation wrapper

Fields

op: B::BlockImportOperation

DB Operation.

notify_imported: Option<ImportSummary<Block>>

Summary of imported block.

notify_finalized: Vec<Block::Hash>

A list of hashes of blocks that got finalized.

Auto Trait Implementations

impl<Block, B> RefUnwindSafe for ClientImportOperation<Block, B> where
    <B as Backend<Block>>::BlockImportOperation: RefUnwindSafe,
    <Block as Block>::Hash: RefUnwindSafe,
    <Block as Block>::Header: RefUnwindSafe,
    <<Block as Block>::Header as Header>::Number: RefUnwindSafe

impl<Block, B> Send for ClientImportOperation<Block, B> where
    <B as Backend<Block>>::BlockImportOperation: Send

impl<Block, B> Sync for ClientImportOperation<Block, B> where
    <B as Backend<Block>>::BlockImportOperation: Sync

impl<Block, B> Unpin for ClientImportOperation<Block, B> where
    <B as Backend<Block>>::BlockImportOperation: Unpin,
    <Block as Block>::Hash: Unpin,
    <Block as Block>::Header: Unpin,
    <<Block as Block>::Header as Header>::Number: Unpin

impl<Block, B> UnwindSafe for ClientImportOperation<Block, B> where
    <B as Backend<Block>>::BlockImportOperation: UnwindSafe,
    <Block as Block>::Hash: UnwindSafe,
    <Block as Block>::Header: UnwindSafe,
    <<Block as Block>::Header as Header>::Number: UnwindSafe

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Any + Send + Sync

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, 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> 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>,