Enum GeneralName
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>),
Invalid(Tag, &'a [u8]),
}
Expand description
Represents a GeneralName as defined in RFC5280. There is no support X.400 addresses and EDIPartyName.
String formats are not validated (except for valid UTF-8).
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>)
Invalid(Tag, &'a [u8])
Invalid data (for ex. invalid UTF-8 data in DNSName entry)
Trait Implementations§
§impl CheckDerConstraints for GeneralName<'_>
impl CheckDerConstraints for GeneralName<'_>
§impl<'a> Clone for GeneralName<'a>
impl<'a> Clone for GeneralName<'a>
§fn clone(&self) -> GeneralName<'a>
fn clone(&self) -> GeneralName<'a>
Returns a duplicate 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 more§impl<'a> Debug for GeneralName<'a>
impl<'a> Debug for GeneralName<'a>
§impl Display for GeneralName<'_>
impl Display for GeneralName<'_>
§impl<'a> FromDer<'a, X509Error> for GeneralName<'a>
impl<'a> FromDer<'a, X509Error> for GeneralName<'a>
§impl<'a> PartialEq for GeneralName<'a>
impl<'a> PartialEq for GeneralName<'a>
§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§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
fn with_context(self, otel_cx: Context) -> WithContext<Self> ⓘ
§fn with_current_context(self) -> WithContext<Self> ⓘ
fn with_current_context(self) -> WithContext<Self> ⓘ
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§fn and<P, B, E>(self, other: P) -> And<T, P>
fn and<P, B, E>(self, other: P) -> And<T, P>
Create a new
Policy
that returns Action::Follow
only if self
and other
return
Action::Follow
. Read more§impl<T, U> RamaTryInto<U> for Twhere
U: RamaTryFrom<T>,
impl<T, U> RamaTryInto<U> for Twhere
U: RamaTryFrom<T>,
type Error = <U as RamaTryFrom<T>>::Error
fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T>>::Error>
§impl<T, U> RamaTryInto<U> for Twhere
U: RamaTryFrom<T>,
impl<T, U> RamaTryInto<U> for Twhere
U: RamaTryFrom<T>,
type Error = <U as RamaTryFrom<T>>::Error
fn rama_try_into(self) -> Result<U, <U as RamaTryFrom<T>>::Error>
§impl<T> ToSmolStr for T
impl<T> ToSmolStr for T
fn to_smolstr(&self) -> SmolStr
§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.