Enum wavefile::Frame [] [src]

pub enum Frame {
    Mono(i32),
    Stereo(i32i32),
    Multi(Vec<i32>),
}

Variants

Mono(i32)Stereo(i32i32)Multi(Vec<i32>)

Trait Implementations

impl PartialEq for Frame
[src]

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

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

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

This method tests for !=.

impl Debug for Frame
[src]

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

Formats the value using the given formatter.