Struct nettle_sys::nettle_armor
source · #[repr(C)]pub struct nettle_armor {
pub name: *const c_char,
pub encode_context_size: c_uint,
pub decode_context_size: c_uint,
pub encode_final_length: c_uint,
pub encode_init: nettle_armor_init_func,
pub encode_length: nettle_armor_length_func,
pub encode_update: nettle_armor_encode_update_func,
pub encode_final: nettle_armor_encode_final_func,
pub decode_init: nettle_armor_init_func,
pub decode_length: nettle_armor_length_func,
pub decode_update: nettle_armor_decode_update_func,
pub decode_final: nettle_armor_decode_final_func,
}
Fields§
§name: *const c_char
§encode_context_size: c_uint
§decode_context_size: c_uint
§encode_final_length: c_uint
§encode_init: nettle_armor_init_func
§encode_length: nettle_armor_length_func
§encode_update: nettle_armor_encode_update_func
§encode_final: nettle_armor_encode_final_func
§decode_init: nettle_armor_init_func
§decode_length: nettle_armor_length_func
§decode_update: nettle_armor_decode_update_func
§decode_final: nettle_armor_decode_final_func
Trait Implementations§
source§impl Clone for nettle_armor
impl Clone for nettle_armor
source§fn clone(&self) -> nettle_armor
fn clone(&self) -> nettle_armor
Returns a copy 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 nettle_armor
impl Debug for nettle_armor
impl Copy for nettle_armor
Auto Trait Implementations§
impl RefUnwindSafe for nettle_armor
impl !Send for nettle_armor
impl !Sync for nettle_armor
impl Unpin for nettle_armor
impl UnwindSafe for nettle_armor
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