Skip to main content

ChainHeadBackend

Struct ChainHeadBackend 

Source
pub struct ChainHeadBackend<T: Config> { /* private fields */ }
Expand description

The chainHead backend.

Implementations§

Source§

impl<T: Config> ChainHeadBackend<T>

Source

pub fn builder() -> ChainHeadBackendBuilder<T>

Configure and construct an ChainHeadBackend and the associated ChainHeadBackendDriver.

Trait Implementations§

Source§

impl<T: Config> Backend<T> for ChainHeadBackend<T>

Source§

fn storage_fetch_values<'life0, 'async_trait>( &'life0 self, keys: Vec<Vec<u8>>, at: HashFor<T>, ) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<StorageResponse>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Fetch values from storage.
Source§

fn storage_fetch_descendant_keys<'life0, 'async_trait>( &'life0 self, key: Vec<u8>, at: HashFor<T>, ) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<Vec<u8>>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Fetch keys underneath the given key from storage.
Source§

fn storage_fetch_descendant_values<'life0, 'async_trait>( &'life0 self, key: Vec<u8>, at: HashFor<T>, ) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<StorageResponse>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Fetch values underneath the given key from storage.
Source§

fn genesis_hash<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<HashFor<T>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Fetch the genesis hash
Source§

fn block_number_to_hash<'life0, 'async_trait>( &'life0 self, _number: u64, ) -> Pin<Box<dyn Future<Output = Result<Option<BlockRef<HashFor<T>>>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Convert a block number to a hash. This should return None in the event that multiple block hashes correspond to the given number (ie if the number is greater than that of the latest finalized block and some forks exist). Nevertheless, it could still return the hash to a block on some fork that is pruned.
Source§

fn block_header<'life0, 'async_trait>( &'life0 self, at: HashFor<T>, ) -> Pin<Box<dyn Future<Output = Result<Option<T::Header>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get a block header.
Source§

fn block_body<'life0, 'async_trait>( &'life0 self, at: HashFor<T>, ) -> Pin<Box<dyn Future<Output = Result<Option<Vec<Vec<u8>>>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Return the extrinsics found in the block. Each extrinsic is represented by a vector of bytes which has not been SCALE decoded (in other words, the first bytes in the vector will decode to the compact encoded length of the extrinsic)
Source§

fn latest_finalized_block_ref<'life0, 'async_trait>( &'life0 self, ) -> Pin<Box<dyn Future<Output = Result<BlockRef<HashFor<T>>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Get the most recent finalized block hash. Note: needed only in blocks client for finalized block stream; can prolly be removed.
Source§

fn stream_all_block_headers<'life0, 'async_trait>( &'life0 self, _hasher: T::Hasher, ) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

A stream of all new block headers as they arrive.
Source§

fn stream_best_block_headers<'life0, 'async_trait>( &'life0 self, _hasher: T::Hasher, ) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

A stream of best block headers.
Source§

fn stream_finalized_block_headers<'life0, 'async_trait>( &'life0 self, _hasher: T::Hasher, ) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<(T::Header, BlockRef<HashFor<T>>)>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

A stream of finalized block headers.
Source§

fn submit_transaction<'life0, 'life1, 'async_trait>( &'life0 self, extrinsic: &'life1 [u8], ) -> Pin<Box<dyn Future<Output = Result<StreamOfResults<TransactionStatus<HashFor<T>>>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Submit a transaction. This will return a stream of events about it.
Source§

fn call<'life0, 'life1, 'life2, 'async_trait>( &'life0 self, method: &'life1 str, call_parameters: Option<&'life2 [u8]>, at: HashFor<T>, ) -> Pin<Box<dyn Future<Output = Result<Vec<u8>, BackendError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

Make a call to some runtime API.
Source§

impl<T: Clone + Config> Clone for ChainHeadBackend<T>

Source§

fn clone(&self) -> ChainHeadBackend<T>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T: Debug + Config> Debug for ChainHeadBackend<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T> !RefUnwindSafe for ChainHeadBackend<T>

§

impl<T> !UnwindSafe for ChainHeadBackend<T>

§

impl<T> Freeze for ChainHeadBackend<T>
where ChainHeadRpcMethods<RpcConfigFor<T>>: Freeze, FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: Freeze,

§

impl<T> Send for ChainHeadBackend<T>
where ChainHeadRpcMethods<RpcConfigFor<T>>: Send, FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: Send,

§

impl<T> Sync for ChainHeadBackend<T>
where ChainHeadRpcMethods<RpcConfigFor<T>>: Sync, FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: Sync,

§

impl<T> Unpin for ChainHeadBackend<T>
where ChainHeadRpcMethods<RpcConfigFor<T>>: Unpin, FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: Unpin,

§

impl<T> UnsafeUnpin for ChainHeadBackend<T>
where ChainHeadRpcMethods<RpcConfigFor<T>>: UnsafeUnpin, FollowStreamDriverHandle<<<T as Config>::Hasher as Hasher>::Hash>: UnsafeUnpin,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> Downcast for T
where T: Any,

Source§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
Source§

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

Source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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 more
Source§

impl<T> JsonSchemaMaybe for T

Source§

impl<T> MaybeSend for T
where T: Send,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more