pub trait Signable<W> {
    // Required method
    fn write(&self, writer: &mut W);
}
Expand description

Something that we know how to hash and sign.

Required Methods§

source

fn write(&self, writer: &mut W)

Implementors§

source§

impl<T, W> Signable<W> for T
where T: BcsSignable, W: Write,

source§

impl<W> Signable<W> for EpochId
where W: Write,