Struct pipewire_sys::pw_core_info
source · #[repr(C)]pub struct pw_core_info {
pub id: u32,
pub cookie: u32,
pub user_name: *const c_char,
pub host_name: *const c_char,
pub version: *const c_char,
pub name: *const c_char,
pub change_mask: u64,
pub props: *mut spa_dict,
}
Expand description
The core information. Extra information may be added in later versions, clients must not assume a constant struct size
Fields§
§id: u32
< id of the global
< a random cookie for identifying this instance of PipeWire
user_name: *const c_char
< name of the user that started the core
host_name: *const c_char
< name of the machine the core is running on
version: *const c_char
< version of the core
name: *const c_char
< name of the core
change_mask: u64
< bitfield of changed fields since last call
props: *mut spa_dict
< extra properties
Trait Implementations§
source§impl Clone for pw_core_info
impl Clone for pw_core_info
source§fn clone(&self) -> pw_core_info
fn clone(&self) -> pw_core_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_core_info
impl Debug for pw_core_info
impl Copy for pw_core_info
Auto Trait Implementations§
impl RefUnwindSafe for pw_core_info
impl !Send for pw_core_info
impl !Sync for pw_core_info
impl Unpin for pw_core_info
impl UnwindSafe for pw_core_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