[][src]Struct x509::Extension

pub struct Extension<'a, O: Oid + 'a> { /* fields omitted */ }

A certificate extension.

Implementations

impl<'a, O: Oid + 'a> Extension<'a, O>[src]

pub fn regular(oid: O, value: &'a [u8]) -> Self[src]

Constructs an extension.

If this extension is not recognized by a certificate-using system, it will be ignored.

oid is an OID that specifies the format and definitions of the extension.

value is the DER encoding of an ASN.1 value corresponding to the extension type identified by oid.

pub fn critical(oid: O, value: &'a [u8]) -> Self[src]

Constructs a critical extension.

If this extension is not recognized by a certificate-using system, the certificate will be rejected.

oid is an OID that specifies the format and definitions of the extension.

value is the DER encoding of an ASN.1 value corresponding to the extension type identified by oid.

Auto Trait Implementations

impl<'a, O> RefUnwindSafe for Extension<'a, O> where
    O: RefUnwindSafe
[src]

impl<'a, O> Send for Extension<'a, O> where
    O: Send
[src]

impl<'a, O> Sync for Extension<'a, O> where
    O: Sync
[src]

impl<'a, O> Unpin for Extension<'a, O> where
    O: Unpin
[src]

impl<'a, O> UnwindSafe for Extension<'a, O> where
    O: UnwindSafe
[src]

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, 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.