Trait ed25519_dalek::pkcs8::spki::der::oid::DynAssociatedOid
pub trait DynAssociatedOid {
// Required method
fn oid(&self) -> ObjectIdentifier;
}
Available on crate feature
pkcs8
only.Expand description
A trait which associates a dynamic, &self
-dependent OID with a type,
which may change depending on the type’s value.
This trait is object safe and auto-impl’d for any types which impl
AssociatedOid
.
Required Methods§
fn oid(&self) -> ObjectIdentifier
fn oid(&self) -> ObjectIdentifier
Get the OID associated with this value.