#[repr(C)]pub struct ltc_asn1_list_ {
pub type_: ltc_asn1_type,
pub data: *mut c_void,
pub size: c_ulong,
pub used: c_int,
pub prev: *mut ltc_asn1_list_,
pub next: *mut ltc_asn1_list_,
pub child: *mut ltc_asn1_list_,
pub parent: *mut ltc_asn1_list_,
}Expand description
A LTC ASN.1 list type
Fields§
§type_: ltc_asn1_typeThe LTC ASN.1 enumerated type identifier
data: *mut c_voidThe data to encode or place for decoding
size: c_ulongThe size of the input or resulting output
used: c_intThe used flag, this is used by the CHOICE ASN.1 type to indicate which choice was made
prev: *mut ltc_asn1_list_prev/next entry in the list
next: *mut ltc_asn1_list_prev/next entry in the list
child: *mut ltc_asn1_list_prev/next entry in the list
parent: *mut ltc_asn1_list_prev/next entry in the list
Trait Implementations§
Source§impl Clone for ltc_asn1_list_
impl Clone for ltc_asn1_list_
Source§impl Debug for ltc_asn1_list_
impl Debug for ltc_asn1_list_
impl Copy for ltc_asn1_list_
Auto Trait Implementations§
impl Freeze for ltc_asn1_list_
impl RefUnwindSafe for ltc_asn1_list_
impl !Send for ltc_asn1_list_
impl !Sync for ltc_asn1_list_
impl Unpin for ltc_asn1_list_
impl UnwindSafe for ltc_asn1_list_
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more