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

pub struct IOSpec { /* fields omitted */ }

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::{Datatype, IOSpec};
let spec = IOSpec::new(Datatype::Float32I, Datatype::Float32I);

pub fn soxr_spec(&self) -> &soxr_io_spec_t[src]

returns inner soxr struct

Auto Trait Implementations

impl RefUnwindSafe for IOSpec

impl !Send for IOSpec

impl !Sync for IOSpec

impl Unpin for IOSpec

impl UnwindSafe for IOSpec

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.