Struct amethyst_audio::OggFormat [−][src]
pub struct OggFormat;
Loads audio from Ogg Vorbis files
Trait Implementations
impl Clone for OggFormat[src]
impl Clone for OggFormatfn clone(&self) -> OggFormat[src]
fn clone(&self) -> OggFormatReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl SimpleFormat<Audio> for OggFormat[src]
impl SimpleFormat<Audio> for OggFormatconst NAME: &'static str
NAME: &'static str = "OGG"
A unique identifier for this format.
type Options = ()
Options specific to the format, which are passed to import. E.g. for textures this would be stuff like mipmap levels and sampler info. Read more
fn import(&self, bytes: Vec<u8>, _: ()) -> Result<AudioData>[src]
fn import(&self, bytes: Vec<u8>, _: ()) -> Result<AudioData>Produces asset data from given bytes.