pub trait IGameSaveData_ProcCopyMethods: IGameSaveData_ProcCopy {
// Provided methods
fn ctor(self, save_data: impl Into<GameSaveData>) { ... }
fn message_open(self) { ... }
fn read(self) { ... }
fn write(self) { ... }
fn success(self) { ... }
}Provided Methods§
Sourcefn ctor(self, save_data: impl Into<GameSaveData>)
fn ctor(self, save_data: impl Into<GameSaveData>)
.ctor(crate::app::gamesavedata::GameSaveData) overload
Sourcefn message_open(self)
fn message_open(self)
MessageOpen() 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: IGameSaveData_ProcCopy> IGameSaveData_ProcCopyMethods for __T
Available on crate feature
app-gamesavedata only.