Skip to main content

ISoundSystem_ResultSoundLoadMethods

Trait ISoundSystem_ResultSoundLoadMethods 

Source
pub trait ISoundSystem_ResultSoundLoadMethods: ISoundSystem_ResultSoundLoad {
    // Provided methods
    fn ctor(self) { ... }
    fn set_status(self, status: impl Into<SoundSystem_ResultSoundLoad_Status>) { ... }
    fn is_loading(self) -> bool { ... }
    fn is_load_success(self) -> bool { ... }
    fn is_load_fault(self) -> bool { ... }
}

Provided Methods§

Source

fn ctor(self)

.ctor() overload

Source

fn set_status(self, status: impl Into<SoundSystem_ResultSoundLoad_Status>)

SetStatus(crate::app::soundsystem::SoundSystem_ResultSoundLoad_Status) overload

Source

fn is_loading(self) -> bool

IsLoading() overload

Source

fn is_load_success(self) -> bool

IsLoadSuccess() overload

Source

fn is_load_fault(self) -> bool

IsLoadFault() overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: ISoundSystem_ResultSoundLoad> ISoundSystem_ResultSoundLoadMethods for __T

Available on crate feature app-soundsystem only.