pub trait Chain<B: Block> {
// Required method
fn block_status(
&self,
hash: B::Hash,
) -> Result<BlockStatus, Box<dyn Error + Send>>;
}Expand description
A type which provides access to chain information.
Required Methods§
Sourcefn block_status(
&self,
hash: B::Hash,
) -> Result<BlockStatus, Box<dyn Error + Send>>
fn block_status( &self, hash: B::Hash, ) -> Result<BlockStatus, Box<dyn Error + Send>>
Retrieve the status of the block denoted by the given Block::Hash.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".