pub trait AppPublic: AppKey + Public + Ord + PartialOrd + Eq + PartialEq + Debug + MaybeHash + Codec {
    type Generic: IsWrappedBy<Self> + Public + Ord + PartialOrd + Eq + PartialEq + Debug + MaybeHash + Codec;
}
Expand description

A application’s public key.

Required Associated Types§

source

type Generic: IsWrappedBy<Self> + Public + Ord + PartialOrd + Eq + PartialEq + Debug + MaybeHash + Codec

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

Implementors§

source§

impl AppPublic for sp_application_crypto::ecdsa::AppPublic

source§

impl AppPublic for sp_application_crypto::ed25519::AppPublic

source§

impl AppPublic for sp_application_crypto::sr25519::AppPublic