[][src]Struct pd_sys::_signal

#[repr(C)]
pub struct _signal {
    pub s_n: c_int,
    pub s_vec: *mut t_sample,
    pub s_sr: t_float,
    pub s_refcount: c_int,
    pub s_isborrowed: c_int,
    pub s_borrowedfrom: *mut _signal,
    pub s_nextfree: *mut _signal,
    pub s_nextused: *mut _signal,
    pub s_vecsize: c_int,
}

Fields

s_n: c_ints_vec: *mut t_samples_sr: t_floats_refcount: c_ints_isborrowed: c_ints_borrowedfrom: *mut _signals_nextfree: *mut _signals_nextused: *mut _signals_vecsize: c_int

Trait Implementations

impl Clone for _signal[src]

impl Copy for _signal[src]

impl Debug for _signal[src]

Auto Trait Implementations

impl RefUnwindSafe for _signal

impl !Send for _signal

impl !Sync for _signal

impl Unpin for _signal

impl UnwindSafe for _signal

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.