pub trait HandlerTypes {
    type Error;
}
Expand description

Types used by the Handler. For improved readability.

Required Associated Types§

source

type Error

What can go wrong when handling a piece of data.

Implementors§

source§

impl<B, I, J, CS, V, F, BI> HandlerTypes for Handler<B, I, J, CS, V, F, BI>
where J: Justification, B: Block<UnverifiedHeader = <<J as Justification>::Header as Header>::Unverified>, I: PeerId, CS: ChainStatus<B, J>, V: Verifier<J>, F: Finalizer<J>, BI: BlockImport<B>,

§

type Error = Error<B, J, CS, V, F>