#[repr(C)]pub struct codec_interface {
pub interface_name: *const c_char,
pub implementations: *mut codec_implementation,
pub parse_fmtp: core_codec_fmtp_parse_func,
pub codec_id: u32,
pub rwlock: *mut thread_rwlock,
pub refs: c_int,
pub reflock: *mut mutex,
pub modname: *mut c_char,
pub parent: *mut loadable_module_interface,
pub next: *mut codec_interface,
}
Fields§
§interface_name: *const c_char
§implementations: *mut codec_implementation
§parse_fmtp: core_codec_fmtp_parse_func
§codec_id: u32
§rwlock: *mut thread_rwlock
§refs: c_int
§reflock: *mut mutex
§modname: *mut c_char
§parent: *mut loadable_module_interface
§next: *mut codec_interface
Trait Implementations§
Source§impl Clone for codec_interface
impl Clone for codec_interface
Source§fn clone(&self) -> codec_interface
fn clone(&self) -> codec_interface
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 codec_interface
impl Debug for codec_interface
Source§impl Default for codec_interface
impl Default for codec_interface
impl Copy for codec_interface
Auto Trait Implementations§
impl Freeze for codec_interface
impl RefUnwindSafe for codec_interface
impl !Send for codec_interface
impl !Sync for codec_interface
impl Unpin for codec_interface
impl UnwindSafe for codec_interface
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