Skip to main content

IMapSequenceTemporarySaveMethods

Trait IMapSequenceTemporarySaveMethods 

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

Source

fn write(self)

Write() overload

Source

fn post_write(self)

PostWrite() overload

Source

fn on_result( self, is_success: impl Into<bool>, header: impl Into<GameSaveDataHeader>, )

OnResult(bool, crate::app::gamesavedataheader::GameSaveDataHeader) 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: IMapSequenceTemporarySave> IMapSequenceTemporarySaveMethods for __T

Available on crate feature app-mapsequencetemporarysave only.