pub trait AppSignature: AppKey + Eq + PartialEq + Debug + MaybeHash {
    type Generic: IsWrappedBy<Self> + Eq + PartialEq + Debug + MaybeHash;
}
Expand description

A application’s signature.

Required Associated Types§

source

type Generic: IsWrappedBy<Self> + Eq + PartialEq + Debug + MaybeHash

The wrapped type which is just a plain instance of Signature.

Implementors§

source§

impl AppSignature for sp_application_crypto::ecdsa::AppSignature

source§

impl AppSignature for sp_application_crypto::ed25519::AppSignature

source§

impl AppSignature for sp_application_crypto::sr25519::AppSignature