Struct rich_sdl2_rust::audio::format::AudioFormat
source · pub struct AudioFormat {
pub flag: AudioFormatFlag,
pub bit_size: u8,
}
Expand description
A format to represent how is stored samples in audio data.
Fields§
§flag: AudioFormatFlag
A flag to represent characteristics of a type.
bit_size: u8
A size in bits of a type.
Implementations§
source§impl AudioFormat
impl AudioFormat
sourcepub const fn signed16_lsb() -> Self
pub const fn signed16_lsb() -> Self
A format for signed little endian 16-bit data.
sourcepub const fn unsigned16_lsb() -> Self
pub const fn unsigned16_lsb() -> Self
A format for unsigned little endian 16-bit data.
sourcepub const fn signed16_msb() -> Self
pub const fn signed16_msb() -> Self
A format for signed big endian 16-bit data.
sourcepub const fn unsigned16_msb() -> Self
pub const fn unsigned16_msb() -> Self
A format for unsigned big endian 16-bit data.
sourcepub const fn signed32_lsb() -> Self
pub const fn signed32_lsb() -> Self
A format for signed little endian 32-bit data.
sourcepub const fn signed32_msb() -> Self
pub const fn signed32_msb() -> Self
A format for signed big endian 32-bit data.
sourcepub const fn float32_lsb() -> Self
pub const fn float32_lsb() -> Self
A format for floating-point little endian 32-bit data.
sourcepub const fn float32_msb() -> Self
pub const fn float32_msb() -> Self
A format for floating-point big endian 32-bit data.
Trait Implementations§
source§impl Clone for AudioFormat
impl Clone for AudioFormat
source§fn clone(&self) -> AudioFormat
fn clone(&self) -> AudioFormat
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 moresource§impl Debug for AudioFormat
impl Debug for AudioFormat
source§impl From<u16> for AudioFormat
impl From<u16> for AudioFormat
source§impl PartialEq for AudioFormat
impl PartialEq for AudioFormat
source§fn eq(&self, other: &AudioFormat) -> bool
fn eq(&self, other: &AudioFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AudioFormat
impl Eq for AudioFormat
impl StructuralPartialEq for AudioFormat
Auto Trait Implementations§
impl RefUnwindSafe for AudioFormat
impl Send for AudioFormat
impl Sync for AudioFormat
impl Unpin for AudioFormat
impl UnwindSafe for AudioFormat
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