#[repr(C)]pub struct secure_settings_s {
pub crypto_tag: c_int,
pub local_raw_key: [c_uchar; 64],
pub remote_raw_key: [c_uchar; 64],
pub crypto_type: switch_rtp_crypto_key_type_t,
pub local_crypto_key: *mut c_char,
pub remote_crypto_key: *mut c_char,
pub local_key_material_next: *mut switch_crypto_key_material_s,
pub local_key_material_n: c_ulong,
pub remote_key_material_next: *mut switch_crypto_key_material_s,
pub remote_key_material_n: c_ulong,
}Fields§
§crypto_tag: c_int§local_raw_key: [c_uchar; 64]§remote_raw_key: [c_uchar; 64]§crypto_type: switch_rtp_crypto_key_type_t§local_crypto_key: *mut c_char§remote_crypto_key: *mut c_char§local_key_material_next: *mut switch_crypto_key_material_s§local_key_material_n: c_ulong§remote_key_material_next: *mut switch_crypto_key_material_s§remote_key_material_n: c_ulongTrait Implementations§
Source§impl Clone for secure_settings_s
impl Clone for secure_settings_s
Source§fn clone(&self) -> secure_settings_s
fn clone(&self) -> secure_settings_s
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 secure_settings_s
impl Debug for secure_settings_s
Source§impl Default for secure_settings_s
impl Default for secure_settings_s
impl Copy for secure_settings_s
Auto Trait Implementations§
impl Freeze for secure_settings_s
impl RefUnwindSafe for secure_settings_s
impl !Send for secure_settings_s
impl !Sync for secure_settings_s
impl Unpin for secure_settings_s
impl UnsafeUnpin for secure_settings_s
impl UnwindSafe for secure_settings_s
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