pub type SubjectPublicKeyInfoOwned = SubjectPublicKeyInfo<Any, BitString>;
Expand description
SubjectPublicKeyInfo
with Any
algorithm parameters, and BitString
params.
Aliased Type§
struct SubjectPublicKeyInfoOwned {
pub algorithm: AlgorithmIdentifier<Any>,
pub subject_public_key: BitString,
}
Fields§
§algorithm: AlgorithmIdentifier<Any>
X.509 AlgorithmIdentifier
for the public key type
subject_public_key: BitString
Public key data
Implementations§
Source§impl SubjectPublicKeyInfoOwned
impl SubjectPublicKeyInfoOwned
Sourcepub fn from_key<T>(source: T) -> Result<Self>where
T: EncodePublicKey,
pub fn from_key<T>(source: T) -> Result<Self>where
T: EncodePublicKey,
Create a SubjectPublicKeyInfoOwned
from any object that implements
EncodePublicKey
.
Trait Implementations§
Source§impl OwnedToRef for SubjectPublicKeyInfoOwned
impl OwnedToRef for SubjectPublicKeyInfoOwned
Source§type Borrowed<'a> = SubjectPublicKeyInfo<AnyRef<'a>, BitStringRef<'a>>
type Borrowed<'a> = SubjectPublicKeyInfo<AnyRef<'a>, BitStringRef<'a>>
The resulting type referencing back to Self
Source§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
Source§impl<Params: Clone, Key: Clone> Clone for SubjectPublicKeyInfo<Params, Key>
impl<Params: Clone, Key: Clone> Clone for SubjectPublicKeyInfo<Params, Key>
Source§fn clone(&self) -> SubjectPublicKeyInfo<Params, Key>
fn clone(&self) -> SubjectPublicKeyInfo<Params, Key>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a: 'k, 'k, Params, Key> DecodeValue<'a> for SubjectPublicKeyInfo<Params, Key>
impl<'a: 'k, 'k, Params, Key> DecodeValue<'a> for SubjectPublicKeyInfo<Params, Key>
Source§impl<'a, Params, Key> EncodeValue for SubjectPublicKeyInfo<Params, Key>
impl<'a, Params, Key> EncodeValue for SubjectPublicKeyInfo<Params, Key>
Source§impl<Params: PartialEq, Key: PartialEq> PartialEq for SubjectPublicKeyInfo<Params, Key>
impl<Params: PartialEq, Key: PartialEq> PartialEq for SubjectPublicKeyInfo<Params, Key>
Source§fn eq(&self, other: &SubjectPublicKeyInfo<Params, Key>) -> bool
fn eq(&self, other: &SubjectPublicKeyInfo<Params, Key>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.