#[repr(C)]pub struct WOLFSSL_ASN1_INTEGER {
pub intData: [c_uchar; 20],
pub negative: c_uchar,
pub data: *mut c_uchar,
pub dataMax: c_uint,
pub _bitfield_align_1: [u8; 0],
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 1]>,
pub length: c_int,
pub type_: c_int,
}Fields§
§intData: [c_uchar; 20]§negative: c_uchar§data: *mut c_uchar§dataMax: c_uint§_bitfield_align_1: [u8; 0]§_bitfield_1: __BindgenBitfieldUnit<[u8; 1]>§length: c_int§type_: c_intImplementations§
Source§impl WOLFSSL_ASN1_INTEGER
impl WOLFSSL_ASN1_INTEGER
pub fn isDynamic(&self) -> byte
pub fn set_isDynamic(&mut self, val: byte)
pub unsafe fn isDynamic_raw(this: *const Self) -> byte
pub unsafe fn set_isDynamic_raw(this: *mut Self, val: byte)
pub fn new_bitfield_1(isDynamic: byte) -> __BindgenBitfieldUnit<[u8; 1]>
Trait Implementations§
Source§impl Clone for WOLFSSL_ASN1_INTEGER
impl Clone for WOLFSSL_ASN1_INTEGER
Source§fn clone(&self) -> WOLFSSL_ASN1_INTEGER
fn clone(&self) -> WOLFSSL_ASN1_INTEGER
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WOLFSSL_ASN1_INTEGER
impl Debug for WOLFSSL_ASN1_INTEGER
impl Copy for WOLFSSL_ASN1_INTEGER
Auto Trait Implementations§
impl Freeze for WOLFSSL_ASN1_INTEGER
impl RefUnwindSafe for WOLFSSL_ASN1_INTEGER
impl !Send for WOLFSSL_ASN1_INTEGER
impl !Sync for WOLFSSL_ASN1_INTEGER
impl Unpin for WOLFSSL_ASN1_INTEGER
impl UnsafeUnpin for WOLFSSL_ASN1_INTEGER
impl UnwindSafe for WOLFSSL_ASN1_INTEGER
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