[][src]Struct sndfile_sys::SF_INFO

#[repr(C)]pub struct SF_INFO {
    pub frames: sf_count_t,
    pub samplerate: c_int,
    pub channels: c_int,
    pub format: c_int,
    pub sections: c_int,
    pub seekable: c_int,
}

Fields

frames: sf_count_tsamplerate: c_intchannels: c_intformat: c_intsections: c_intseekable: c_int

Trait Implementations

impl Debug for SF_INFO[src]

Auto Trait Implementations

impl RefUnwindSafe for SF_INFO

impl Send for SF_INFO

impl Sync for SF_INFO

impl Unpin for SF_INFO

impl UnwindSafe for SF_INFO

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.