Struct boring_sys::asn1_object_st[][src]

#[repr(C)]pub struct asn1_object_st {
    pub sn: *const c_char,
    pub ln: *const c_char,
    pub nid: c_int,
    pub length: c_int,
    pub data: *const c_uchar,
    pub flags: c_int,
}

Fields

sn: *const c_charln: *const c_charnid: c_intlength: c_intdata: *const c_ucharflags: c_int

Trait Implementations

impl Clone for asn1_object_st[src]

impl Copy for asn1_object_st[src]

impl Debug for asn1_object_st[src]

impl Default for asn1_object_st[src]

impl Eq for asn1_object_st[src]

impl PartialEq<asn1_object_st> for asn1_object_st[src]

impl StructuralEq for asn1_object_st[src]

impl StructuralPartialEq for asn1_object_st[src]

Auto Trait Implementations

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.