Skip to main content

IBgmSelectPlayerMethods

Trait IBgmSelectPlayerMethods 

Source
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§

Source

fn finalize(self)

Finalize() overload

Source

fn is_playing(self, event_name: impl Into<Il2CppString>) -> bool

IsPlaying(::unity::Il2CppString) overload

Source

fn pause_current_bgm(self)

PauseCurrentBgm() overload

Source

fn play_select(self, event_name: impl Into<Il2CppString>)

PlaySelect(::unity::Il2CppString) overload

Source

fn close(self)

Close() overload

Source

fn ctor(self)

.ctor() 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: IBgmSelectPlayer> IBgmSelectPlayerMethods for __T

Available on crate feature app-bgmselectplayer only.