Trait aleph_bft::Signature

source ·
pub trait Signature: Debug + Clone + Codec + Send + Sync + Eq + 'static { }
Expand description

The type used as a signature.

The Signature typically does not contain the index of the node who signed the data.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Signature for T
where T: Debug + Clone + Codec + Send + Sync + Eq + 'static,