Struct pipewire_sys::pw_module_info
source · #[repr(C)]pub struct pw_module_info {
pub id: u32,
pub name: *const c_char,
pub filename: *const c_char,
pub args: *const c_char,
pub change_mask: u64,
pub props: *mut spa_dict,
}
Expand description
The module information. Extra information can be added in later versions
Fields§
§id: u32
< id of the global
name: *const c_char
< name of the module
filename: *const c_char
< filename of the module
args: *const c_char
< arguments passed to the module
change_mask: u64
< bitfield of changed fields since last call
props: *mut spa_dict
< extra properties
Trait Implementations§
source§impl Clone for pw_module_info
impl Clone for pw_module_info
source§fn clone(&self) -> pw_module_info
fn clone(&self) -> pw_module_info
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 pw_module_info
impl Debug for pw_module_info
impl Copy for pw_module_info
Auto Trait Implementations§
impl RefUnwindSafe for pw_module_info
impl !Send for pw_module_info
impl !Sync for pw_module_info
impl Unpin for pw_module_info
impl UnwindSafe for pw_module_info
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