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§
Source§impl CheckDerConstraints for GeneralName<'_>
impl CheckDerConstraints for GeneralName<'_>
Source§impl<'a> Clone for GeneralName<'a>
impl<'a> Clone for GeneralName<'a>
Source§fn clone(&self) -> GeneralName<'a>
fn clone(&self) -> GeneralName<'a>
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> Debug for GeneralName<'a>
impl<'a> Debug for GeneralName<'a>
Source§impl<'a> Display for GeneralName<'a>
impl<'a> Display for GeneralName<'a>
Source§impl<'a> FromDer<'a, X509Error> for GeneralName<'a>
impl<'a> FromDer<'a, X509Error> for GeneralName<'a>
Source§fn 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)
Source§impl<'a> PartialEq for GeneralName<'a>
impl<'a> PartialEq for GeneralName<'a>
Source§impl<'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> Freeze for GeneralName<'a>
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§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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