Enum basic_dsp_vector::PaddingOption
[−]
[src]
pub enum PaddingOption {
End,
Surround,
Center,
}An option which defines how a vector should be padded
Variants
EndAppends zeros to the end of the vector.
SurroundSurrounds the vector with zeros at the beginning and at the end.
CenterInserts 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) -> bool1.0.0
This method tests for !=.