#[repr(C)]
pub struct _snd_pcm_scope_ops { pub enable: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t) -> c_int>, pub disable: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>, pub start: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>, pub stop: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>, pub update: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>, pub reset: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>, pub close: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>, }
Expand description

#SND_PCM_TYPE_METER scope functions

Fields§

§enable: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t) -> c_int>

\brief Enable and prepare it using current params \param scope scope handle

§disable: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>

\brief Disable \param scope scope handle

§start: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>

\brief PCM has been started \param scope scope handle

§stop: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>

\brief PCM has been stopped \param scope scope handle

§update: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>

\brief New frames are present \param scope scope handle

§reset: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>

\brief Reset status \param scope scope handle

§close: Option<unsafe extern "C" fn(scope: *mut snd_pcm_scope_t)>

\brief PCM is closing \param scope scope handle

Trait Implementations§

source§

impl Clone for _snd_pcm_scope_ops

source§

fn clone(&self) -> _snd_pcm_scope_ops

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for _snd_pcm_scope_ops

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for _snd_pcm_scope_ops

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.