Struct asn1::ObjectIdentifier [−][src]
pub struct ObjectIdentifier<'a> { /* fields omitted */ }Expand description
Represents an ASN.1 OBJECT IDENTIFIER. ObjectIdentifiers are opaque, the only thing may be
done with them is test if they are equal to another ObjectIdentifier. The generally
recommended practice for handling them is to create some ObjectIdentifier constants with
ObjectIdentifier::from_string and then compare ObjectIdentifiers you get from parsing to
those.
Implementations
Parses an OID from a dotted string, e.g. "1.2.840.113549".
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl<'a> RefUnwindSafe for ObjectIdentifier<'a>
impl<'a> Send for ObjectIdentifier<'a>
impl<'a> Sync for ObjectIdentifier<'a>
impl<'a> Unpin for ObjectIdentifier<'a>
impl<'a> UnwindSafe for ObjectIdentifier<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more