pub trait AppSignature:
AppCrypto
+ Signature
+ Eq
+ PartialEq
+ Debug
+ Clone {
type Generic: IsWrappedBy<Self> + Signature + Eq + PartialEq + Debug;
}Expand description
Application-specific signature and Proof Of Possession
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".