#[repr(C)]pub struct bignum_st {
pub d: *mut BN_ULONG,
pub width: c_int,
pub dmax: c_int,
pub neg: c_int,
pub flags: c_int,
}
Fields§
§d: *mut BN_ULONG
§width: c_int
§dmax: c_int
§neg: c_int
§flags: c_int
Trait Implementations§
impl Copy for bignum_st
impl Eq for bignum_st
impl StructuralPartialEq for bignum_st
Auto Trait Implementations§
impl Freeze for bignum_st
impl RefUnwindSafe for bignum_st
impl !Send for bignum_st
impl !Sync for bignum_st
impl Unpin for bignum_st
impl UnwindSafe for bignum_st
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