#[repr(C, packed(1))]pub struct ECCPrivateKeyBlob {
pub bit_len: ULONG,
pub private_key: [BYTE; 64],
}
Expand description
The structure of ECCPRIVATEKEYBLOB
Fields§
§bit_len: ULONG
The real length of the key
private_key: [BYTE; 64]
Implementations§
Trait Implementations§
Source§impl Clone for ECCPrivateKeyBlob
impl Clone for ECCPrivateKeyBlob
Source§fn clone(&self) -> ECCPrivateKeyBlob
fn clone(&self) -> ECCPrivateKeyBlob
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 ECCPrivateKeyBlob
impl Debug for ECCPrivateKeyBlob
Source§impl Default for ECCPrivateKeyBlob
impl Default for ECCPrivateKeyBlob
impl Copy for ECCPrivateKeyBlob
Auto Trait Implementations§
impl Freeze for ECCPrivateKeyBlob
impl RefUnwindSafe for ECCPrivateKeyBlob
impl Send for ECCPrivateKeyBlob
impl Sync for ECCPrivateKeyBlob
impl Unpin for ECCPrivateKeyBlob
impl UnwindSafe for ECCPrivateKeyBlob
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