pub struct AnyRef<'a> { /* private fields */ }
Expand description
ASN.1 ANY
: represents any explicitly tagged ASN.1 value.
This is a zero-copy reference type which borrows from the input data.
Technically ANY
hasn’t been a recommended part of ASN.1 since the X.209
revision from 1988. It was deprecated and replaced by Information Object
Classes in X.680 in 1994, and X.690 no longer refers to it whatsoever.
Nevertheless, this crate defines an ANY
type as it remains a familiar
and useful concept which is still extensively used in things like
PKI-related RFCs.
Implementations§
source§impl<'a> AnyRef<'a>
impl<'a> AnyRef<'a>
sourcepub fn decode_into<T>(self) -> Result<T>where
T: DecodeValue<'a> + FixedTag,
pub fn decode_into<T>(self) -> Result<T>where T: DecodeValue<'a> + FixedTag,
Attempt to decode this AnyRef
type into the inner value.
sourcepub fn bit_string(self) -> Result<BitStringRef<'a>>
pub fn bit_string(self) -> Result<BitStringRef<'a>>
Attempt to decode an ASN.1 BIT STRING
.
sourcepub fn context_specific<T>(self) -> Result<ContextSpecific<T>>where
T: Decode<'a>,
pub fn context_specific<T>(self) -> Result<ContextSpecific<T>>where T: Decode<'a>,
Attempt to decode an ASN.1 CONTEXT-SPECIFIC
field.
sourcepub fn generalized_time(self) -> Result<GeneralizedTime>
pub fn generalized_time(self) -> Result<GeneralizedTime>
Attempt to decode an ASN.1 GeneralizedTime
.
sourcepub fn ia5_string(self) -> Result<Ia5StringRef<'a>>
pub fn ia5_string(self) -> Result<Ia5StringRef<'a>>
Attempt to decode an ASN.1 IA5String
.
sourcepub fn octet_string(self) -> Result<OctetStringRef<'a>>
pub fn octet_string(self) -> Result<OctetStringRef<'a>>
Attempt to decode an ASN.1 OCTET STRING
.
sourcepub fn oid(self) -> Result<ObjectIdentifier>
pub fn oid(self) -> Result<ObjectIdentifier>
Attempt to decode an ASN.1 OBJECT IDENTIFIER
.
sourcepub fn optional<T>(self) -> Result<Option<T>>where
T: Choice<'a> + TryFrom<Self, Error = Error>,
pub fn optional<T>(self) -> Result<Option<T>>where T: Choice<'a> + TryFrom<Self, Error = Error>,
Attempt to decode an ASN.1 OPTIONAL
value.
sourcepub fn printable_string(self) -> Result<PrintableStringRef<'a>>
pub fn printable_string(self) -> Result<PrintableStringRef<'a>>
Attempt to decode an ASN.1 PrintableString
.
sourcepub fn teletex_string(self) -> Result<TeletexStringRef<'a>>
pub fn teletex_string(self) -> Result<TeletexStringRef<'a>>
Attempt to decode an ASN.1 TeletexString
.
sourcepub fn videotex_string(self) -> Result<VideotexStringRef<'a>>
pub fn videotex_string(self) -> Result<VideotexStringRef<'a>>
Attempt to decode an ASN.1 VideotexString
.
sourcepub fn sequence<F, T>(self, f: F) -> Result<T>where
F: FnOnce(&mut SliceReader<'a>) -> Result<T>,
pub fn sequence<F, T>(self, f: F) -> Result<T>where F: FnOnce(&mut SliceReader<'a>) -> Result<T>,
Attempt to decode this value an ASN.1 SEQUENCE
, creating a new
nested reader and calling the provided argument with it.
sourcepub fn utf8_string(self) -> Result<Utf8StringRef<'a>>
pub fn utf8_string(self) -> Result<Utf8StringRef<'a>>
Attempt to decode an ASN.1 UTF8String
.
Trait Implementations§
source§impl EncodeValue for AnyRef<'_>
impl EncodeValue for AnyRef<'_>
source§impl<'a> From<&'a ObjectIdentifier> for AnyRef<'a>
impl<'a> From<&'a ObjectIdentifier> for AnyRef<'a>
source§fn from(oid: &'a ObjectIdentifier) -> AnyRef<'a>
fn from(oid: &'a ObjectIdentifier) -> AnyRef<'a>
source§impl<'a> From<Ia5StringRef<'a>> for AnyRef<'a>
impl<'a> From<Ia5StringRef<'a>> for AnyRef<'a>
source§fn from(printable_string: Ia5StringRef<'a>) -> AnyRef<'a>
fn from(printable_string: Ia5StringRef<'a>) -> AnyRef<'a>
source§impl<'a> From<OctetStringRef<'a>> for AnyRef<'a>
impl<'a> From<OctetStringRef<'a>> for AnyRef<'a>
source§fn from(octet_string: OctetStringRef<'a>) -> AnyRef<'a>
fn from(octet_string: OctetStringRef<'a>) -> AnyRef<'a>
source§impl<'a> From<PrintableStringRef<'a>> for AnyRef<'a>
impl<'a> From<PrintableStringRef<'a>> for AnyRef<'a>
source§fn from(printable_string: PrintableStringRef<'a>) -> AnyRef<'a>
fn from(printable_string: PrintableStringRef<'a>) -> AnyRef<'a>
source§impl<'a> From<TeletexStringRef<'a>> for AnyRef<'a>
impl<'a> From<TeletexStringRef<'a>> for AnyRef<'a>
source§fn from(teletex_string: TeletexStringRef<'a>) -> AnyRef<'a>
fn from(teletex_string: TeletexStringRef<'a>) -> AnyRef<'a>
source§impl<'a> From<Utf8StringRef<'a>> for AnyRef<'a>
impl<'a> From<Utf8StringRef<'a>> for AnyRef<'a>
source§fn from(printable_string: Utf8StringRef<'a>) -> AnyRef<'a>
fn from(printable_string: Utf8StringRef<'a>) -> AnyRef<'a>
source§impl<'a> From<VideotexStringRef<'a>> for AnyRef<'a>
impl<'a> From<VideotexStringRef<'a>> for AnyRef<'a>
source§fn from(printable_string: VideotexStringRef<'a>) -> AnyRef<'a>
fn from(printable_string: VideotexStringRef<'a>) -> AnyRef<'a>
source§impl<'a> Ord for AnyRef<'a>
impl<'a> Ord for AnyRef<'a>
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
source§impl<'a> PartialEq<AnyRef<'a>> for AnyRef<'a>
impl<'a> PartialEq<AnyRef<'a>> for AnyRef<'a>
source§impl<'a> PartialOrd<AnyRef<'a>> for AnyRef<'a>
impl<'a> PartialOrd<AnyRef<'a>> for AnyRef<'a>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more