Struct Sound

Source
pub struct Sound<G: Eq + Hash + Send + 'static = ()> { /* private fields */ }
Expand description

Represents a sound in the AudioEngine.

If this is dropped, the sound will continue to play, but will be removed when it reachs its ends, even if it is set to loop.

Implementations§

Source§

impl<G: Eq + Hash + Send + 'static> Sound<G>

Source

pub fn play(&mut self)

Starts or continue to play the sound.

If the sound was paused or stop, it will start playing again. Otherwise, does nothing.

Source

pub fn pause(&mut self)

Pause the sound.

If the sound is playing, it will pause. If play is called, this sound will continue from where it was before pause. If the sound is not playing, does nothing.

Source

pub fn stop(&mut self)

Stop the sound.

If the sound is playing, it will pause and reset the song. When play is called, this sound will start from the beginning. Even if the sound is not playing, it will reset the sound to the start.

Source

pub fn reset(&mut self)

Reset the sound to the start.

The behaviour is the same being the sound playing or not.

Source

pub fn set_volume(&mut self, volume: f32)

Set the volume of the sound.

Source

pub fn set_loop(&mut self, looping: bool)

Set if the sound will repeat ever time it reachs its end.

Trait Implementations§

Source§

impl<G: Eq + Hash + Send + 'static> Drop for Sound<G>

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<G> Freeze for Sound<G>

§

impl<G> RefUnwindSafe for Sound<G>

§

impl<G> Send for Sound<G>

§

impl<G> Sync for Sound<G>

§

impl<G> Unpin for Sound<G>

§

impl<G> UnwindSafe for Sound<G>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.