Struct simple_asn1::OID[][src]

pub struct OID(_);

An ASN.1 OID.

Implementations

impl OID[src]

pub fn new(x: Vec<BigUint>) -> OID[src]

Generate an ASN.1. The vector should be in the obvious format, with each component going left-to-right.

pub fn as_raw(&self) -> Result<Vec<u8>, ASN1EncodeErr>[src]

converts the

Trait Implementations

impl Clone for OID[src]

impl Debug for OID[src]

impl PartialEq<OID> for OID[src]

impl<'a> PartialEq<OID> for &'a OID[src]

impl StructuralPartialEq for OID[src]

Auto Trait Implementations

impl RefUnwindSafe for OID

impl Send for OID

impl Sync for OID

impl Unpin for OID

impl UnwindSafe for OID

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.