Struct libspa_sys::spa_device_object_info
source · #[repr(C)]pub struct spa_device_object_info {
pub version: u32,
pub type_: *const c_char,
pub factory_name: *const c_char,
pub change_mask: u64,
pub flags: u64,
pub props: *const spa_dict,
}
Expand description
Information about a device object
This information is part of the object_info event on the device.
Fields§
§version: u32
§type_: *const c_char
< the object type managed by this device
factory_name: *const c_char
< a factory name that implements the object
change_mask: u64
§flags: u64
§props: *const spa_dict
< extra object properties
Trait Implementations§
source§impl Clone for spa_device_object_info
impl Clone for spa_device_object_info
source§fn clone(&self) -> spa_device_object_info
fn clone(&self) -> spa_device_object_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 spa_device_object_info
impl Debug for spa_device_object_info
source§impl PartialEq for spa_device_object_info
impl PartialEq for spa_device_object_info
source§fn eq(&self, other: &spa_device_object_info) -> bool
fn eq(&self, other: &spa_device_object_info) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for spa_device_object_info
impl Eq for spa_device_object_info
impl StructuralPartialEq for spa_device_object_info
Auto Trait Implementations§
impl RefUnwindSafe for spa_device_object_info
impl !Send for spa_device_object_info
impl !Sync for spa_device_object_info
impl Unpin for spa_device_object_info
impl UnwindSafe for spa_device_object_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