Struct wasapi::BufferFlags

source ·
pub struct BufferFlags {
    pub data_discontinuity: bool,
    pub silent: bool,
    pub timestamp_error: bool,
}
Expand description

Struct representing the _AUDCLNT_BUFFERFLAGS enum values.

Fields§

§data_discontinuity: bool

AUDCLNT_BUFFERFLAGS_DATA_DISCONTINUITY

§silent: bool

AUDCLNT_BUFFERFLAGS_SILENT

§timestamp_error: bool

AUDCLNT_BUFFERFLAGS_TIMESTAMP_ERROR

Implementations§

source§

impl BufferFlags

source

pub fn new(flags: u32) -> Self

Create a new BufferFlags struct from a u32 value.

source

pub fn none() -> Self

source

pub fn to_u32(&self) -> u32

Convert a BufferFlags struct to a u32 value.

Trait Implementations§

source§

impl Debug for BufferFlags

source§

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

Formats the value using the given formatter. Read more

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, 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.