[][src]Struct fluidlite::Loader

#[repr(transparent)]
pub struct Loader { /* fields omitted */ }

The SoundFont loader object

Methods

impl Loader[src]

pub fn new_default() -> Result<Self>[src]

Create default SoundFont loader

pub fn set_file_api<F: FileApi>(&self, fileapi: F)[src]

Set the file reading API which will be used by loader

pub fn set_default_file_api<F: FileApi>(fileapi: F)[src]

Set the file reading API which will be used by loaders by default

pub fn reset_default_file_api()[src]

Reset the file reading API which will be used by loaders by default

Trait Implementations

impl Drop for Loader[src]

impl Send for Loader[src]

Auto Trait Implementations

impl RefUnwindSafe for Loader

impl !Sync for Loader

impl Unpin for Loader

impl UnwindSafe for Loader

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.