#[repr(C)]
pub struct pw_impl_client_events { pub version: u32, pub destroy: Option<unsafe extern "C" fn(data: *mut c_void)>, pub free: Option<unsafe extern "C" fn(data: *mut c_void)>, pub initialized: Option<unsafe extern "C" fn(data: *mut c_void)>, pub info_changed: Option<unsafe extern "C" fn(data: *mut c_void, info: *const pw_client_info)>, pub resource_added: Option<unsafe extern "C" fn(data: *mut c_void, resource: *mut pw_resource)>, pub resource_removed: Option<unsafe extern "C" fn(data: *mut c_void, resource: *mut pw_resource)>, pub busy_changed: Option<unsafe extern "C" fn(data: *mut c_void, busy: bool)>, }
Expand description

The events that a client can emit

Fields§

§version: u32§destroy: Option<unsafe extern "C" fn(data: *mut c_void)>

emitted when the client is destroyed

§free: Option<unsafe extern "C" fn(data: *mut c_void)>

emitted right before the client is freed

§initialized: Option<unsafe extern "C" fn(data: *mut c_void)>

the client is initialized

§info_changed: Option<unsafe extern "C" fn(data: *mut c_void, info: *const pw_client_info)>

emitted when the client info changed

§resource_added: Option<unsafe extern "C" fn(data: *mut c_void, resource: *mut pw_resource)>

emitted when a new resource is added for client

§resource_removed: Option<unsafe extern "C" fn(data: *mut c_void, resource: *mut pw_resource)>

emitted when a resource is removed

§busy_changed: Option<unsafe extern "C" fn(data: *mut c_void, busy: bool)>

emitted when the client becomes busy processing an asynchronous message. In the busy state no messages should be processed. Processing should resume when the client becomes not busy

Trait Implementations§

source§

impl Clone for pw_impl_client_events

source§

fn clone(&self) -> pw_impl_client_events

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 pw_impl_client_events

source§

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

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

impl Copy for pw_impl_client_events

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.