Trait 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.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

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