pub struct SoundBankFailure {
pub name: &'static str,
pub error: AudioError,
}Expand description
A cue that did not load, reported instead of silently vanishing.
Fields§
§name: &'static strThe name from the SoundSpec.
error: AudioErrorWhy it did not load.
Trait Implementations§
Source§impl Clone for SoundBankFailure
impl Clone for SoundBankFailure
Source§fn clone(&self) -> SoundBankFailure
fn clone(&self) -> SoundBankFailure
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SoundBankFailure
impl RefUnwindSafe for SoundBankFailure
impl Send for SoundBankFailure
impl Sync for SoundBankFailure
impl Unpin for SoundBankFailure
impl UnsafeUnpin for SoundBankFailure
impl UnwindSafe for SoundBankFailure
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more