#[repr(C)]pub struct coap_pki_key_define_t {
pub ca: coap_const_char_ptr_t,
pub public_cert: coap_const_char_ptr_t,
pub private_key: coap_const_char_ptr_t,
pub ca_len: usize,
pub public_cert_len: usize,
pub private_key_len: usize,
pub ca_def: coap_pki_define_t,
pub public_cert_def: coap_pki_define_t,
pub private_key_def: coap_pki_define_t,
pub private_key_type: coap_asn1_privatekey_type_t,
pub user_pin: *const c_char,
}
Fields§
§ca: coap_const_char_ptr_t
§public_cert: coap_const_char_ptr_t
§private_key: coap_const_char_ptr_t
§ca_len: usize
§public_cert_len: usize
§private_key_len: usize
§ca_def: coap_pki_define_t
§public_cert_def: coap_pki_define_t
§private_key_def: coap_pki_define_t
§private_key_type: coap_asn1_privatekey_type_t
§user_pin: *const c_char
Trait Implementations§
Source§impl Clone for coap_pki_key_define_t
impl Clone for coap_pki_key_define_t
Source§fn clone(&self) -> coap_pki_key_define_t
fn clone(&self) -> coap_pki_key_define_t
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 moreimpl Copy for coap_pki_key_define_t
Auto Trait Implementations§
impl Freeze for coap_pki_key_define_t
impl RefUnwindSafe for coap_pki_key_define_t
impl !Send for coap_pki_key_define_t
impl !Sync for coap_pki_key_define_t
impl Unpin for coap_pki_key_define_t
impl UnwindSafe for coap_pki_key_define_t
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