pub trait IFieldBgmManager_ProcChangeBgmMethods: IFieldBgmManager_ProcChangeBgm {
// Provided methods
fn ctor(
self,
bgm_manager: impl Into<FieldBgmManager>,
is_return_to_normal_bgm: impl Into<bool>,
) { ... }
fn proc_call_resume_bgm(self) { ... }
fn proc_call_pause_bgm(self) { ... }
}Provided Methods§
Sourcefn ctor(
self,
bgm_manager: impl Into<FieldBgmManager>,
is_return_to_normal_bgm: impl Into<bool>,
)
fn ctor( self, bgm_manager: impl Into<FieldBgmManager>, is_return_to_normal_bgm: impl Into<bool>, )
.ctor(crate::app::fieldbgmmanager::FieldBgmManager, bool) overload
Sourcefn proc_call_resume_bgm(self)
fn proc_call_resume_bgm(self)
ProcCall_ResumeBgm() overload
Sourcefn proc_call_pause_bgm(self)
fn proc_call_pause_bgm(self)
ProcCall_PauseBgm() 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: IFieldBgmManager_ProcChangeBgm> IFieldBgmManager_ProcChangeBgmMethods for __T
Available on crate feature
app-fieldbgmmanager only.