Struct rustls::DistinguishedName
source · pub struct DistinguishedName(/* private fields */);
Expand description
A DistinguishedName
is a Vec<u8>
wrapped in internal types.
It contains the DER or BER encoded Subject
field from RFC 5280
for a single certificate. The Subject field is encoded as an RFC 5280 Name
.
It can be decoded using x509-parser’s FromDer trait.
ⓘ
for name in distinguished_names {
use x509_parser::prelude::FromDer;
println!("{}", x509_parser::x509::X509Name::from_der(&name.0)?.1);
}
Implementations§
source§impl DistinguishedName
impl DistinguishedName
sourcepub fn in_sequence(bytes: &[u8]) -> Self
pub fn in_sequence(bytes: &[u8]) -> Self
Create a DistinguishedName
after prepending its outer SEQUENCE encoding.
This can be decoded using x509-parser’s FromDer trait.
ⓘ
use x509_parser::prelude::FromDer;
println!("{}", x509_parser::x509::X509Name::from_der(dn.as_ref())?.1);
Trait Implementations§
source§impl AsRef<[u8]> for DistinguishedName
impl AsRef<[u8]> for DistinguishedName
source§impl Clone for DistinguishedName
impl Clone for DistinguishedName
source§fn clone(&self) -> DistinguishedName
fn clone(&self) -> DistinguishedName
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 Debug for DistinguishedName
impl Debug for DistinguishedName
Auto Trait Implementations§
impl Freeze for DistinguishedName
impl RefUnwindSafe for DistinguishedName
impl Send for DistinguishedName
impl Sync for DistinguishedName
impl Unpin for DistinguishedName
impl UnwindSafe for DistinguishedName
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)