Enum x509_parser::extensions::GeneralName
source · [−]pub enum GeneralName<'a> {
OtherName(Oid<'a>, &'a [u8]),
RFC822Name(&'a str),
DNSName(&'a str),
X400Address(Any<'a>),
DirectoryName(X509Name<'a>),
EDIPartyName(Any<'a>),
URI(&'a str),
IPAddress(&'a [u8]),
RegisteredID(Oid<'a>),
}
Expand description
Represents a GeneralName as defined in RFC5280. There is no support X.400 addresses and EDIPartyName.
String formats are not validated.
Variants
OtherName(Oid<'a>, &'a [u8])
RFC822Name(&'a str)
More or less an e-mail, the format is not checked.
DNSName(&'a str)
A hostname, format is not checked.
X400Address(Any<'a>)
X400Address,
DirectoryName(X509Name<'a>)
RFC5280 defines several string types, we always try to parse as utf-8 which is more or less a superset of the string types.
EDIPartyName(Any<'a>)
EDIPartyName
URI(&'a str)
An uniform resource identifier. The format is not checked.
IPAddress(&'a [u8])
An ip address, provided as encoded.
RegisteredID(Oid<'a>)
Trait Implementations
sourceimpl CheckDerConstraints for GeneralName<'_>
impl CheckDerConstraints for GeneralName<'_>
fn check_constraints(any: &Any<'_>) -> Result<()>
sourceimpl<'a> Clone for GeneralName<'a>
impl<'a> Clone for GeneralName<'a>
sourcefn clone(&self) -> GeneralName<'a>
fn clone(&self) -> GeneralName<'a>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<'a> Debug for GeneralName<'a>
impl<'a> Debug for GeneralName<'a>
sourceimpl<'a> Display for GeneralName<'a>
impl<'a> Display for GeneralName<'a>
sourceimpl<'a> FromDer<'a, X509Error> for GeneralName<'a>
impl<'a> FromDer<'a, X509Error> for GeneralName<'a>
sourcefn from_der(i: &'a [u8]) -> X509Result<'a, Self>
fn from_der(i: &'a [u8]) -> X509Result<'a, Self>
Attempt to parse input bytes into a DER object (enforcing constraints)
sourceimpl<'a> PartialEq<GeneralName<'a>> for GeneralName<'a>
impl<'a> PartialEq<GeneralName<'a>> for GeneralName<'a>
sourcefn eq(&self, other: &GeneralName<'a>) -> bool
fn eq(&self, other: &GeneralName<'a>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GeneralName<'a>) -> bool
fn ne(&self, other: &GeneralName<'a>) -> bool
This method tests for !=
.
sourceimpl<'a> TryFrom<Any<'a>> for GeneralName<'a>
impl<'a> TryFrom<Any<'a>> for GeneralName<'a>
impl<'a> StructuralPartialEq for GeneralName<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for GeneralName<'a>
impl<'a> Send for GeneralName<'a>
impl<'a> Sync for GeneralName<'a>
impl<'a> Unpin for GeneralName<'a>
impl<'a> UnwindSafe for GeneralName<'a>
Blanket Implementations
sourceimpl<'a, T, E> AsTaggedExplicit<'a, E> for T where
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for T where
T: 'a,
sourceimpl<'a, T, E> AsTaggedImplicit<'a, E> for T where
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for T where
T: 'a,
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more