Enum rfmod::SoundFormat [] [src]

pub enum SoundFormat {
    None,
    PCM8,
    PCM16,
    PCM24,
    PCM32,
    PCMFloat,
    GCADPCM,
    IMAADPCM,
    VAG,
    HEVAG,
    XMA,
    MPEG,
    CELT,
    AT9,
    XWMA,
    VORBIS,
    Max,
    ForceInt,
}

These definitions describe the native format of the hardware or software buffer that will be used.

Variants

None

Uninitialized / unknown.

PCM8

8bit integer PCM data.

PCM16

16bit integer PCM data.

PCM24

24bit integer PCM data.

PCM32

32bit integer PCM data.

PCMFloat

32bit floating point PCM data.

GCADPCM

Compressed Nintendo 3DS/Wii DSP data.

IMAADPCM

Compressed IMA ADPCM data.

VAG

Compressed PlayStation Portable ADPCM data.

HEVAG

Compressed PSVita ADPCM data.

XMA

Compressed Xbox360 XMA data.

MPEG

Compressed MPEG layer 2 or 3 data.

CELT

Compressed CELT data.

AT9

Compressed PSVita ATRAC9 data.

XWMA

Compressed Xbox360 xWMA data.

VORBIS

Compressed Vorbis data.

Max

Maximum number of sound formats supported.

ForceInt

Makes sure this enum is signed 32bit.

Trait Implementations

impl Copy for SoundFormat
[src]

impl Debug for SoundFormat
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialOrd for SoundFormat
[src]

fn partial_cmp(&self, __arg_0: &SoundFormat) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, other: &Rhs) -> bool
1.0.0

This method tests less than (for self and other) and is used by the < operator. Read more

fn le(&self, other: &Rhs) -> bool
1.0.0

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

fn gt(&self, other: &Rhs) -> bool
1.0.0

This method tests greater than (for self and other) and is used by the > operator. Read more

fn ge(&self, other: &Rhs) -> bool
1.0.0

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq for SoundFormat
[src]

fn eq(&self, __arg_0: &SoundFormat) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Clone for SoundFormat
[src]

fn clone(&self) -> SoundFormat

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more