Enum portaudio::types::PaSampleFormat [-]  [+] [src]

pub enum PaSampleFormat {
    PaFloat32,
    PaInt32,
    PaInt16,
    PaInt8,
    PaUInt8,
    PaCustomFormat,
    PaNonInterleaved,
}

A type used to specify one or more sample formats.

Variants

PaFloat32

32 bits float sample format

PaInt32

32 bits int sample format

PaInt16

16 bits int sample format

PaInt8

8 bits int sample format

PaUInt8

8 bits unsigned int sample format

PaCustomFormat

Custom sample format

PaNonInterleaved

Non interleaved sample format

Trait Implementations

Derived Implementations

impl Show for PaSampleFormat

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

impl PartialOrd for PaSampleFormat

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

fn lt(&self, __arg_0: &PaSampleFormat) -> bool

fn le(&self, __arg_0: &PaSampleFormat) -> bool

fn gt(&self, __arg_0: &PaSampleFormat) -> bool

fn ge(&self, __arg_0: &PaSampleFormat) -> bool

impl PartialEq for PaSampleFormat

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

fn ne(&self, __arg_0: &PaSampleFormat) -> bool

impl Clone for PaSampleFormat

fn clone(&self) -> PaSampleFormat

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