pub trait IMapSequenceTemporarySaveMethods: IMapSequenceTemporarySave {
// Provided methods
fn write(self) { ... }
fn post_write(self) { ... }
fn on_result(
self,
is_success: impl Into<bool>,
header: impl Into<GameSaveDataHeader>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn post_write(self)
fn post_write(self)
PostWrite() overload
Sourcefn on_result(
self,
is_success: impl Into<bool>,
header: impl Into<GameSaveDataHeader>,
)
fn on_result( self, is_success: impl Into<bool>, header: impl Into<GameSaveDataHeader>, )
OnResult(bool, crate::app::gamesavedataheader::GameSaveDataHeader) 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: IMapSequenceTemporarySave> IMapSequenceTemporarySaveMethods for __T
Available on crate feature
app-mapsequencetemporarysave only.