pub trait HeaderEntryDiscriminant<H>: Sealed {
    type Output;

    // Required method
    fn apply(client: JsonRpcClient, entry: H) -> Self::Output;
}
Expand description

Trait for defining a HeaderEntry’s application on a client.

Required Associated Types§

Required Methods§

source

fn apply(client: JsonRpcClient, entry: H) -> Self::Output

Object Safety§

This trait is not object safe.

Implementors§