#[repr(C)]pub struct aws_ecc_key_pair {
pub allocator: *mut aws_allocator,
pub ref_count: aws_atomic_var,
pub curve_name: aws_ecc_curve_name,
pub key_buf: aws_byte_buf,
pub pub_x: aws_byte_buf,
pub pub_y: aws_byte_buf,
pub priv_d: aws_byte_buf,
pub vtable: *mut aws_ecc_key_pair_vtable,
pub impl_: *mut c_void,
}
Fields
allocator: *mut aws_allocator
ref_count: aws_atomic_var
curve_name: aws_ecc_curve_name
key_buf: aws_byte_buf
pub_x: aws_byte_buf
pub_y: aws_byte_buf
priv_d: aws_byte_buf
vtable: *mut aws_ecc_key_pair_vtable
impl_: *mut c_void
Trait Implementations
sourceimpl Clone for aws_ecc_key_pair
impl Clone for aws_ecc_key_pair
sourcefn clone(&self) -> aws_ecc_key_pair
fn clone(&self) -> aws_ecc_key_pair
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_ecc_key_pair
impl Debug for aws_ecc_key_pair
sourceimpl Default for aws_ecc_key_pair
impl Default for aws_ecc_key_pair
sourceimpl PartialEq<aws_ecc_key_pair> for aws_ecc_key_pair
impl PartialEq<aws_ecc_key_pair> for aws_ecc_key_pair
sourcefn eq(&self, other: &aws_ecc_key_pair) -> bool
fn eq(&self, other: &aws_ecc_key_pair) -> bool
impl Copy for aws_ecc_key_pair
impl Eq for aws_ecc_key_pair
impl StructuralEq for aws_ecc_key_pair
impl StructuralPartialEq for aws_ecc_key_pair
Auto Trait Implementations
impl RefUnwindSafe for aws_ecc_key_pair
impl !Send for aws_ecc_key_pair
impl !Sync for aws_ecc_key_pair
impl Unpin for aws_ecc_key_pair
impl UnwindSafe for aws_ecc_key_pair
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more