pub trait Subject:
Clone
+ Debug
+ Send
+ Sync {
type Namespace: Namespace;
// Required methods
fn namespace<'a>(&self, derived: &'a Self::Namespace) -> &'a [u8] ⓘ;
fn message(&self) -> Bytes;
}Expand description
Identifies the subject of a signature or certificate.
Required Associated Types§
Required Methods§
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.