Struct allegro_audio::Sample[][src]

pub struct Sample { /* fields omitted */ }

Implementations

impl Sample[src]

pub fn load(_: &AudioAddon, filename: &str) -> Result<Sample, ()>[src]

pub fn create_instance(&self) -> Result<SampleInstance, ()>[src]

pub fn get_frequency(&self) -> usize[src]

pub fn get_length(&self) -> usize[src]

pub fn get_byte_length(&self) -> usize[src]

pub fn get_depth(&self) -> AudioDepth[src]

pub fn get_channels(&self) -> ChannelConf[src]

pub fn get_raw_data<'l>(&'l self) -> &'l [u8][src]

pub fn get_data<'l, T: DataSample>(&'l self) -> Result<&'l [T], ()>[src]

pub fn get_data_mut<'l, T: DataSample>(&'l mut self) -> Result<&'l mut [T], ()>[src]

pub fn get_raw_data_mut<'l>(&'l mut self) -> &'l mut [u8][src]

pub fn get_allegro_sample(&self) -> *mut ALLEGRO_SAMPLE[src]

Trait Implementations

impl Drop for Sample[src]

impl Send for Sample[src]

impl Sync for Sample[src]

Auto Trait Implementations

impl RefUnwindSafe for Sample

impl Unpin for Sample

impl UnwindSafe for Sample

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.