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§
Sourcefn set_status(self, status: impl Into<SoundSystem_ResultSoundLoad_Status>)
fn set_status(self, status: impl Into<SoundSystem_ResultSoundLoad_Status>)
SetStatus(crate::app::soundsystem::SoundSystem_ResultSoundLoad_Status) overload
Sourcefn is_loading(self) -> bool
fn is_loading(self) -> bool
IsLoading() overload
Sourcefn is_load_success(self) -> bool
fn is_load_success(self) -> bool
IsLoadSuccess() overload
Sourcefn is_load_fault(self) -> bool
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§
impl<__T: ISoundSystem_ResultSoundLoad> ISoundSystem_ResultSoundLoadMethods for __T
Available on crate feature
app-soundsystem only.