pub trait IBgmSelectPlayerMethods: IBgmSelectPlayer {
// Provided methods
fn finalize(self) { ... }
fn is_playing(self, event_name: impl Into<Il2CppString>) -> bool { ... }
fn pause_current_bgm(self) { ... }
fn play_select(self, event_name: impl Into<Il2CppString>) { ... }
fn close(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_playing(self, event_name: impl Into<Il2CppString>) -> bool
fn is_playing(self, event_name: impl Into<Il2CppString>) -> bool
IsPlaying(::unity::Il2CppString) overload
Sourcefn pause_current_bgm(self)
fn pause_current_bgm(self)
PauseCurrentBgm() overload
Sourcefn play_select(self, event_name: impl Into<Il2CppString>)
fn play_select(self, event_name: impl Into<Il2CppString>)
PlaySelect(::unity::Il2CppString) 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: IBgmSelectPlayer> IBgmSelectPlayerMethods for __T
Available on crate feature
app-bgmselectplayer only.