#[repr(C)]pub struct AUDIO_VOLUME_NOTIFICATION_DATA {
pub guidEventContext: GUID,
pub bMuted: BOOL,
pub fMasterVolume: c_float,
pub nChannels: UINT,
pub afChannelVolumes: [c_float; 1],
}
Fields§
§guidEventContext: GUID
§bMuted: BOOL
§fMasterVolume: c_float
§nChannels: UINT
§afChannelVolumes: [c_float; 1]
Trait Implementations§
Source§impl Clone for AUDIO_VOLUME_NOTIFICATION_DATA
impl Clone for AUDIO_VOLUME_NOTIFICATION_DATA
Source§fn clone(&self) -> AUDIO_VOLUME_NOTIFICATION_DATA
fn clone(&self) -> AUDIO_VOLUME_NOTIFICATION_DATA
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 Default for AUDIO_VOLUME_NOTIFICATION_DATA
impl Default for AUDIO_VOLUME_NOTIFICATION_DATA
Source§fn default() -> AUDIO_VOLUME_NOTIFICATION_DATA
fn default() -> AUDIO_VOLUME_NOTIFICATION_DATA
Returns the “default value” for a type. Read more
impl Copy for AUDIO_VOLUME_NOTIFICATION_DATA
Auto Trait Implementations§
impl Freeze for AUDIO_VOLUME_NOTIFICATION_DATA
impl RefUnwindSafe for AUDIO_VOLUME_NOTIFICATION_DATA
impl Send for AUDIO_VOLUME_NOTIFICATION_DATA
impl Sync for AUDIO_VOLUME_NOTIFICATION_DATA
impl Unpin for AUDIO_VOLUME_NOTIFICATION_DATA
impl UnwindSafe for AUDIO_VOLUME_NOTIFICATION_DATA
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