#[repr(C)]pub struct spa_param_info {
pub id: u32,
pub flags: u32,
pub user: u32,
pub seq: i32,
pub padding: [u32; 4],
}
Expand description
information about a parameter
Fields§
§id: u32
< enum spa_param_type
flags: u32
§user: u32
< private user field. You can use this to keep state.
seq: i32
< private seq field. You can use this to keep state of a pending update.
padding: [u32; 4]
Trait Implementations§
Source§impl Clone for spa_param_info
impl Clone for spa_param_info
Source§fn clone(&self) -> spa_param_info
fn clone(&self) -> spa_param_info
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 spa_param_info
impl Debug for spa_param_info
Source§impl PartialEq for spa_param_info
impl PartialEq for spa_param_info
impl Copy for spa_param_info
impl Eq for spa_param_info
impl StructuralPartialEq for spa_param_info
Auto Trait Implementations§
impl Freeze for spa_param_info
impl RefUnwindSafe for spa_param_info
impl Send for spa_param_info
impl Sync for spa_param_info
impl Unpin for spa_param_info
impl UnwindSafe for spa_param_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