#[repr(C)]pub struct ocrypto_rsa_key {
pub n: *mut u32,
pub d: *mut u32,
pub blocks: c_int,
}Expand description
RSA secret key.
Fields§
§n: *mut u32@cond
d: *mut u32§blocks: c_intTrait Implementations§
Source§impl Clone for ocrypto_rsa_key
impl Clone for ocrypto_rsa_key
Source§fn clone(&self) -> ocrypto_rsa_key
fn clone(&self) -> ocrypto_rsa_key
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 ocrypto_rsa_key
impl Debug for ocrypto_rsa_key
impl Copy for ocrypto_rsa_key
Auto Trait Implementations§
impl Freeze for ocrypto_rsa_key
impl RefUnwindSafe for ocrypto_rsa_key
impl !Send for ocrypto_rsa_key
impl !Sync for ocrypto_rsa_key
impl Unpin for ocrypto_rsa_key
impl UnwindSafe for ocrypto_rsa_key
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