Enum basic_dsp::PaddingOption [] [src]

pub enum PaddingOption {
    End,
    Surround,
    Center,
}

An option which defines how a vector should be padded

Variants

End

Appends zeros to the end of the vector.

Surround

Surrounds the vector with zeros at the beginning and at the end.

Center

Inserts zeros in the center of the vector

Trait Implementations

impl Copy for PaddingOption
[src]

impl Clone for PaddingOption
[src]

fn clone(&self) -> PaddingOption

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

impl PartialEq for PaddingOption
[src]

fn eq(&self, __arg_0: &PaddingOption) -> 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 Debug for PaddingOption
[src]

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

Formats the value using the given formatter.