[][src]Struct libsoxr::spec::IOSpec

pub struct IOSpec { /* fields omitted */ }

IOSpec can be used to set the datatype of the input buffer and output buffer. Wrapper for soxr_io_spec_t

Implementations

impl IOSpec[src]

pub fn new(input_type: Datatype, output_type: Datatype) -> IOSpec[src]

creates a new IOSpec using soxr_io_spec

use libsoxr::{Soxr, Datatype, IOSpec};

let spec = IOSpec::new(Datatype::Float32I, Datatype::Float32I);
let soxr = Soxr::create(96000.0, 44100.0, 2, Some(&spec), None, None);
assert!(soxr.is_ok());    

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.