Trait ed25519_dalek::pkcs8::spki::der::referenced::OwnedToRef
pub trait OwnedToRef {
type Borrowed<'a>
where Self: 'a;
// Required method
fn owned_to_ref(&self) -> Self::Borrowed<'_>;
}
Available on crate feature
pkcs8
only.Expand description
A trait for borrowing data from an owned struct
Required Associated Types§
type Borrowed<'a>
where
Self: 'a
type Borrowed<'a> where Self: 'a
The resulting type referencing back to Self
Required Methods§
fn owned_to_ref(&self) -> Self::Borrowed<'_>
fn owned_to_ref(&self) -> Self::Borrowed<'_>
Creates a new object referencing back to the self for storage
Object Safety§
This trait is not object safe.