reth_nippy_jar

Trait NippyJarHeader

source
pub trait NippyJarHeader:
    Send
    + Sync
    + Serialize
    + for<'b> Deserialize<'b>
    + Debug
    + 'static { }
Expand description

A trait for the user-defined header of NippyJar.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> NippyJarHeader for T
where T: Send + Sync + Serialize + for<'b> Deserialize<'b> + Debug + 'static,