Expand description
The Any object is not strictly an ASN.1 type, but holds a generic description of any object
that could be encoded.
It contains a header, and either a reference to or owned data for the object content.
Note: this type is only provided in borrowed version (i.e. it can own the inner data).
Fields
header: Header<'a>The object header
data: &'a [u8]The object contents
Implementations
sourceimpl<'a> Any<'a>
impl<'a> Any<'a>
sourcepub const fn new(header: Header<'a>, data: &'a [u8]) -> Self
pub const fn new(header: Header<'a>, data: &'a [u8]) -> Self
Create a new Any from BER/DER header and content
sourcepub const fn from_tag_and_data(tag: Tag, data: &'a [u8]) -> Self
pub const fn from_tag_and_data(tag: Tag, data: &'a [u8]) -> Self
Create a new Any from a tag, and BER/DER content
sourcepub fn with_class(self, class: Class) -> Self
pub fn with_class(self, class: Class) -> Self
Update the class of the current object
sourcepub fn as_bytes(&'a self) -> &'a [u8]ⓘNotable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
pub fn as_bytes(&'a self) -> &'a [u8]ⓘNotable traits for &'_ mut [u8]impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
Get the bytes representation of the content
pub fn parse_ber<T>(&'a self) -> ParseResult<'a, T> where
T: FromBer<'a>,
pub fn parse_der<T>(&'a self) -> ParseResult<'a, T> where
T: FromDer<'a>,
sourceimpl<'a> Any<'a>
impl<'a> Any<'a>
sourcepub fn bitstring(self) -> Result<BitString<'a>>
pub fn bitstring(self) -> Result<BitString<'a>>
Attempt to convert object to BitString<'a> (ASN.1 type: BIT STRING).
sourcepub fn bmpstring(self) -> Result<BmpString<'a>>
pub fn bmpstring(self) -> Result<BmpString<'a>>
Attempt to convert object to BmpString<'a> (ASN.1 type: BmpString).
sourcepub fn boolean(self) -> Result<Boolean>
pub fn boolean(self) -> Result<Boolean>
Attempt to convert object to Boolean (ASN.1 type: BOOLEAN).
sourcepub fn embedded_pdv(self) -> Result<EmbeddedPdv<'a>>
pub fn embedded_pdv(self) -> Result<EmbeddedPdv<'a>>
Attempt to convert object to EmbeddedPdv<'a> (ASN.1 type: EMBEDDED PDV).
sourcepub fn enumerated(self) -> Result<Enumerated>
pub fn enumerated(self) -> Result<Enumerated>
Attempt to convert object to Enumerated (ASN.1 type: ENUMERATED).
sourcepub fn generalizedtime(self) -> Result<GeneralizedTime>
pub fn generalizedtime(self) -> Result<GeneralizedTime>
Attempt to convert object to GeneralizedTime (ASN.1 type: GeneralizedTime).
sourcepub fn generalstring(self) -> Result<GeneralString<'a>>
pub fn generalstring(self) -> Result<GeneralString<'a>>
Attempt to convert object to GeneralString<'a> (ASN.1 type: GeneralString).
sourcepub fn graphicstring(self) -> Result<GraphicString<'a>>
pub fn graphicstring(self) -> Result<GraphicString<'a>>
Attempt to convert object to GraphicString<'a> (ASN.1 type: GraphicString).
sourcepub fn ia5string(self) -> Result<Ia5String<'a>>
pub fn ia5string(self) -> Result<Ia5String<'a>>
Attempt to convert object to Ia5String<'a> (ASN.1 type: IA5String).
sourcepub fn integer(self) -> Result<Integer<'a>>
pub fn integer(self) -> Result<Integer<'a>>
Attempt to convert object to Integer<'a> (ASN.1 type: INTEGER).
sourcepub fn numericstring(self) -> Result<NumericString<'a>>
pub fn numericstring(self) -> Result<NumericString<'a>>
Attempt to convert object to NumericString<'a> (ASN.1 type: NumericString).
sourcepub fn objectdescriptor(self) -> Result<ObjectDescriptor<'a>>
pub fn objectdescriptor(self) -> Result<ObjectDescriptor<'a>>
Attempt to convert object to ObjectDescriptor<'a> (ASN.1 type: ObjectDescriptor).
sourcepub fn octetstring(self) -> Result<OctetString<'a>>
pub fn octetstring(self) -> Result<OctetString<'a>>
Attempt to convert object to OctetString<'a> (ASN.1 type: OCTET STRING).
sourcepub fn oid(self) -> Result<Oid<'a>>
pub fn oid(self) -> Result<Oid<'a>>
Attempt to convert object to Oid<'a> (ASN.1 type: OBJECT IDENTIFIER).
sourcepub fn relative_oid(self) -> Result<Oid<'a>>
pub fn relative_oid(self) -> Result<Oid<'a>>
Attempt to convert object to Oid (ASN.1 type: RELATIVE-OID).
sourcepub fn printablestring(self) -> Result<PrintableString<'a>>
pub fn printablestring(self) -> Result<PrintableString<'a>>
Attempt to convert object to PrintableString<'a> (ASN.1 type: PrintableString).
sourcepub fn sequence(self) -> Result<Sequence<'a>>
pub fn sequence(self) -> Result<Sequence<'a>>
Attempt to convert object to Sequence<'a> (ASN.1 type: SEQUENCE).
sourcepub fn string(self) -> Result<String>
pub fn string(self) -> Result<String>
Attempt to convert object to String (ASN.1 type: UTF8String).
sourcepub fn teletexstring(self) -> Result<TeletexString<'a>>
pub fn teletexstring(self) -> Result<TeletexString<'a>>
Attempt to convert object to TeletexString<'a> (ASN.1 type: TeletexString).
sourcepub fn universalstring(self) -> Result<UniversalString<'a>>
pub fn universalstring(self) -> Result<UniversalString<'a>>
Attempt to convert object to UniversalString<'a> (ASN.1 type: UniversalString).
sourcepub fn utctime(self) -> Result<UtcTime>
pub fn utctime(self) -> Result<UtcTime>
Attempt to convert object to UtcTime (ASN.1 type: UTCTime).
sourcepub fn utf8string(self) -> Result<Utf8String<'a>>
pub fn utf8string(self) -> Result<Utf8String<'a>>
Attempt to convert object to Utf8String<'a> (ASN.1 type: UTF8String).
sourcepub fn videotexstring(self) -> Result<VideotexString<'a>>
pub fn videotexstring(self) -> Result<VideotexString<'a>>
Attempt to convert object to VideotexString<'a> (ASN.1 type: VideotexString).
sourcepub fn visiblestring(self) -> Result<VisibleString<'a>>
pub fn visiblestring(self) -> Result<VisibleString<'a>>
Attempt to convert object to VisibleString<'a> (ASN.1 type: VisibleString).
Trait Implementations
sourceimpl CheckDerConstraints for Any<'_>
impl CheckDerConstraints for Any<'_>
fn check_constraints(any: &Any<'_>) -> Result<()>
sourceimpl ToDer for Any<'_>
impl ToDer for Any<'_>
sourcefn write_der_raw(&self, writer: &mut dyn Write) -> SerializeResult<usize>
fn write_der_raw(&self, writer: &mut dyn Write) -> SerializeResult<usize>
Similar to using to_der, but uses header without computing length value
sourcefn to_der_len(&self) -> Result<usize>
fn to_der_len(&self) -> Result<usize>
Get the length of the object, when encoded Read more
sourcefn write_der_header(&self, writer: &mut dyn Write) -> SerializeResult<usize>
fn write_der_header(&self, writer: &mut dyn Write) -> SerializeResult<usize>
Attempt to write the DER header to this writer.
sourcefn write_der_content(&self, writer: &mut dyn Write) -> SerializeResult<usize>
fn write_der_content(&self, writer: &mut dyn Write) -> SerializeResult<usize>
Attempt to write the DER content (all except header) to this writer.
sourcefn to_der_vec(&self) -> SerializeResult<Vec<u8>>
fn to_der_vec(&self) -> SerializeResult<Vec<u8>>
Write the DER encoded representation to a newly allocated Vec<u8>.
sourcefn to_der_vec_raw(&self) -> SerializeResult<Vec<u8>>
fn to_der_vec_raw(&self) -> SerializeResult<Vec<u8>>
Similar to using to_vec, but uses provided values without changes.
This can generate an invalid encoding for a DER object. Read more
sourceimpl<'a> TryFrom<Any<'a>> for ObjectDescriptor<'a>
impl<'a> TryFrom<Any<'a>> for ObjectDescriptor<'a>
sourceimpl<'a> TryFrom<Any<'a>> for OctetString<'a>
impl<'a> TryFrom<Any<'a>> for OctetString<'a>
sourceimpl<'a, T> TryFrom<Any<'a>> for SequenceOf<T> where
T: FromBer<'a>,
impl<'a, T> TryFrom<Any<'a>> for SequenceOf<T> where
T: FromBer<'a>,
sourceimpl<'a> TryFrom<Any<'a>> for EmbeddedPdv<'a>
impl<'a> TryFrom<Any<'a>> for EmbeddedPdv<'a>
sourceimpl<'a> TryFrom<Any<'a>> for GeneralString<'a>
impl<'a> TryFrom<Any<'a>> for GeneralString<'a>
sourceimpl<'a> TryFrom<Any<'a>> for GraphicString<'a>
impl<'a> TryFrom<Any<'a>> for GraphicString<'a>
sourceimpl<'a> TryFrom<Any<'a>> for NumericString<'a>
impl<'a> TryFrom<Any<'a>> for NumericString<'a>
sourceimpl<'a> TryFrom<Any<'a>> for PrintableString<'a>
impl<'a> TryFrom<Any<'a>> for PrintableString<'a>
sourceimpl<'a> TryFrom<Any<'a>> for EndOfContent
impl<'a> TryFrom<Any<'a>> for EndOfContent
sourceimpl<'a> TryFrom<Any<'a>> for TeletexString<'a>
impl<'a> TryFrom<Any<'a>> for TeletexString<'a>
sourceimpl<'a> TryFrom<Any<'a>> for UniversalString<'a>
impl<'a> TryFrom<Any<'a>> for UniversalString<'a>
sourceimpl<'a> TryFrom<Any<'a>> for Utf8String<'a>
impl<'a> TryFrom<Any<'a>> for Utf8String<'a>
sourceimpl<'a> TryFrom<Any<'a>> for VideotexString<'a>
impl<'a> TryFrom<Any<'a>> for VideotexString<'a>
sourceimpl<'a> TryFrom<Any<'a>> for VisibleString<'a>
impl<'a> TryFrom<Any<'a>> for VisibleString<'a>
sourceimpl<'a, T, const CLASS: u8, const TAG: u32> TryFrom<Any<'a>> for TaggedValue<T, Explicit, CLASS, TAG> where
T: FromBer<'a>,
impl<'a, T, const CLASS: u8, const TAG: u32> TryFrom<Any<'a>> for TaggedValue<T, Explicit, CLASS, TAG> where
T: FromBer<'a>,
sourceimpl<'a, T, const CLASS: u8, const TAG: u32> TryFrom<Any<'a>> for TaggedValue<T, Implicit, CLASS, TAG> where
T: TryFrom<Any<'a>, Error = Error>,
T: Tagged,
impl<'a, T, const CLASS: u8, const TAG: u32> TryFrom<Any<'a>> for TaggedValue<T, Implicit, CLASS, TAG> where
T: TryFrom<Any<'a>, Error = Error>,
T: Tagged,
sourceimpl<'a> TryFrom<Any<'a>> for Enumerated
impl<'a> TryFrom<Any<'a>> for Enumerated
sourceimpl<'a> TryFrom<Any<'a>> for GeneralizedTime
impl<'a> TryFrom<Any<'a>> for GeneralizedTime
impl<'a> StructuralPartialEq for Any<'a>
Auto Trait Implementations
impl<'a> RefUnwindSafe for Any<'a>
impl<'a> Send for Any<'a>
impl<'a> Sync for Any<'a>
impl<'a> Unpin for Any<'a>
impl<'a> UnwindSafe for Any<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> FmtForward for T
impl<T> FmtForward for T
fn fmt_binary(self) -> FmtBinary<Self> where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self> where
Self: Binary,
Causes self to use its Binary implementation when Debug-formatted. Read more
fn fmt_display(self) -> FmtDisplay<Self> where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self> where
Self: Display,
Causes self to use its Display implementation when
Debug-formatted. Read more
fn fmt_lower_exp(self) -> FmtLowerExp<Self> where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self> where
Self: LowerExp,
Causes self to use its LowerExp implementation when
Debug-formatted. Read more
fn fmt_lower_hex(self) -> FmtLowerHex<Self> where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self> where
Self: LowerHex,
Causes self to use its LowerHex implementation when
Debug-formatted. Read more
fn fmt_octal(self) -> FmtOctal<Self> where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self> where
Self: Octal,
Causes self to use its Octal implementation when Debug-formatted. Read more
fn fmt_pointer(self) -> FmtPointer<Self> where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self> where
Self: Pointer,
Causes self to use its Pointer implementation when
Debug-formatted. Read more
fn fmt_upper_exp(self) -> FmtUpperExp<Self> where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self> where
Self: UpperExp,
Causes self to use its UpperExp implementation when
Debug-formatted. Read more
fn fmt_upper_hex(self) -> FmtUpperHex<Self> where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self> where
Self: UpperHex,
Causes self to use its UpperHex implementation when
Debug-formatted. Read more
fn fmt_list(self) -> FmtList<Self> where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self> where
&'a Self: for<'a> IntoIterator,
Formats each item in a sequence. Read more
impl<T> Pipe for T where
T: ?Sized,
impl<T> Pipe for T where
T: ?Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
Pipes by value. This is generally the method you want to use. Read more
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R where
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R where
R: 'a,
Borrows self and passes that borrow into the pipe function. Read more
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R where
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R where
R: 'a,
Mutably borrows self and passes that borrow into the pipe function. Read more
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R where
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R where
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
Borrows self, then passes self.borrow() into the pipe function. Read more
fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R where
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R where
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
Mutably borrows self, then passes self.borrow_mut() into the pipe
function. Read more
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R where
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R where
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
Borrows self, then passes self.as_ref() into the pipe function.
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R where
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R where
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
Mutably borrows self, then passes self.as_mut() into the pipe
function. Read more
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Deref<Target = T>,
T: 'a + ?Sized,
R: 'a,
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Deref<Target = T>,
T: 'a + ?Sized,
R: 'a,
Borrows self, then passes self.deref() into the pipe function.
impl<T> Tap for T
impl<T> Tap for T
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
Immutable access to the Borrow<B> of a value. Read more
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
Mutable access to the BorrowMut<B> of a value. Read more
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
Immutable access to the AsRef<R> view of a value. Read more
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
Mutable access to the AsMut<R> view of a value. Read more
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self where
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self where
Self: Deref<Target = T>,
T: ?Sized,
Immutable access to the Deref::Target of a value. Read more
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self where
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self where
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
Mutable access to the Deref::Target of a value. Read more
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls .tap() only in debug builds, and is erased in release builds.
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls .tap_mut() only in debug builds, and is erased in release
builds. Read more
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
Calls .tap_borrow() only in debug builds, and is erased in release
builds. Read more
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
Calls .tap_borrow_mut() only in debug builds, and is erased in release
builds. Read more
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
Calls .tap_ref() only in debug builds, and is erased in release
builds. Read more
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
Calls .tap_ref_mut() only in debug builds, and is erased in release
builds. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more