pub trait KeyConstraintExtension: 'static {
const NAME: &'static str;
}
Expand description
SSH agent protocol key constraint extension
Described in draft-miller-ssh-agent-14 § 3.2.7.3
Required Associated Constants§
Sourceconst NAME: &'static str
const NAME: &'static str
Extension name, indicating the type of the key constraint (as a UTF-8 string).
Extension names should be suffixed by the implementation domain as per RFC4251 § 4.2,
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.