Struct sdl2_sys::SDL_AudioDeviceEvent
source · #[repr(C)]pub struct SDL_AudioDeviceEvent {
pub type_: Uint32,
pub timestamp: Uint32,
pub which: Uint32,
pub iscapture: Uint8,
pub padding1: Uint8,
pub padding2: Uint8,
pub padding3: Uint8,
}
Expand description
\brief Audio device event structure (event.adevice.*)
Fields§
§type_: Uint32
< ::SDL_AUDIODEVICEADDED, or ::SDL_AUDIODEVICEREMOVED
timestamp: Uint32
< In milliseconds, populated using SDL_GetTicks()
which: Uint32
< The audio device index for the ADDED event (valid until next SDL_GetNumAudioDevices() call), SDL_AudioDeviceID for the REMOVED event
iscapture: Uint8
< zero if an output device, non-zero if a capture device.
padding1: Uint8
§padding2: Uint8
§padding3: Uint8
Trait Implementations§
source§impl Clone for SDL_AudioDeviceEvent
impl Clone for SDL_AudioDeviceEvent
source§fn clone(&self) -> SDL_AudioDeviceEvent
fn clone(&self) -> SDL_AudioDeviceEvent
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 moreimpl Copy for SDL_AudioDeviceEvent
Auto Trait Implementations§
impl Freeze for SDL_AudioDeviceEvent
impl RefUnwindSafe for SDL_AudioDeviceEvent
impl Send for SDL_AudioDeviceEvent
impl Sync for SDL_AudioDeviceEvent
impl Unpin for SDL_AudioDeviceEvent
impl UnwindSafe for SDL_AudioDeviceEvent
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