Trait ed25519_dalek::pkcs8::spki::der::Decode
pub trait Decode<'a>: Sized {
// Required method
fn decode<R>(decoder: &mut R) -> Result<Self, Error>
where R: Reader<'a>;
// Provided method
fn from_der(bytes: &'a [u8]) -> Result<Self, Error> { ... }
}
Available on crate feature
pkcs8
only.Expand description
Decoding trait.
This trait provides the core abstraction upon which all decoding operations are based.
Required Methods§
Provided Methods§
Object Safety§
This trait is not object safe.
Implementations on Foreign Types§
§impl<'a, T> Decode<'a> for PhantomData<T>where
T: ?Sized,
impl<'a, T> Decode<'a> for PhantomData<T>where
T: ?Sized,
Dummy implementation for PhantomData
which allows deriving
implementations on structs with phantom fields.