Struct pipewire_sys::pw_stream_control 
source · #[repr(C)]pub struct pw_stream_control {
    pub name: *const c_char,
    pub flags: u32,
    pub def: f32,
    pub min: f32,
    pub max: f32,
    pub values: *mut f32,
    pub n_values: u32,
    pub max_values: u32,
}Fields§
§name: *const c_char< name of the control
flags: u32< extra flags (unused)
def: f32< default value
min: f32< min value
max: f32< max value
values: *mut f32< array of values
n_values: u32< number of values in array
max_values: u32< max values that can be set on this control
Trait Implementations§
source§impl Clone for pw_stream_control
 
impl Clone for pw_stream_control
source§fn clone(&self) -> pw_stream_control
 
fn clone(&self) -> pw_stream_control
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_stream_control
 
impl Debug for pw_stream_control
impl Copy for pw_stream_control
Auto Trait Implementations§
impl RefUnwindSafe for pw_stream_control
impl !Send for pw_stream_control
impl !Sync for pw_stream_control
impl Unpin for pw_stream_control
impl UnwindSafe for pw_stream_control
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