#[repr(C)]pub struct secure_session_user_callbacks_type {
pub send_data: send_protocol_data_callback,
pub receive_data: receive_protocol_data_callback,
pub state_changed: protocol_state_changed_callback,
pub get_public_key_for_id: get_public_key_for_id_callback,
pub user_data: *mut c_void,
}Fields§
§send_data: send_protocol_data_callback§receive_data: receive_protocol_data_callback§state_changed: protocol_state_changed_callback§get_public_key_for_id: get_public_key_for_id_callback§user_data: *mut c_voidTrait Implementations§
Source§impl Clone for secure_session_user_callbacks_type
impl Clone for secure_session_user_callbacks_type
Source§fn clone(&self) -> secure_session_user_callbacks_type
fn clone(&self) -> secure_session_user_callbacks_type
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 secure_session_user_callbacks_type
Auto Trait Implementations§
impl Freeze for secure_session_user_callbacks_type
impl RefUnwindSafe for secure_session_user_callbacks_type
impl !Send for secure_session_user_callbacks_type
impl !Sync for secure_session_user_callbacks_type
impl Unpin for secure_session_user_callbacks_type
impl UnwindSafe for secure_session_user_callbacks_type
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