[][src]Struct bevy_audio::AudioOutput

pub struct AudioOutput<P = AudioSource> where
    P: Decodable
{ /* fields omitted */ }

Used to play audio on the current "audio device"

Implementations

impl<P> AudioOutput<P> where
    P: Decodable,
    <P as Decodable>::Decoder: Source + Send + Sync,
    <<P as Decodable>::Decoder as Iterator>::Item: Sample + Send + Sync
[src]

pub fn play_source(&self, audio_source: &P)[src]

pub fn play(&self, audio_source: Handle<P>)[src]

pub fn try_play_queued(&self, audio_sources: &Assets<P>)[src]

Trait Implementations

impl<P> Default for AudioOutput<P> where
    P: Decodable
[src]

Auto Trait Implementations

impl<P = AudioSource> !RefUnwindSafe for AudioOutput<P>

impl<P> Send for AudioOutput<P>

impl<P> Sync for AudioOutput<P>

impl<P> Unpin for AudioOutput<P> where
    P: Unpin

impl<P> UnwindSafe for AudioOutput<P> where
    P: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Component for T where
    T: 'static + Send + Sync

impl<T> From<T> for T[src]

impl<T> FromResources for T where
    T: Default
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: 'static + Send + Sync
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,