Skip to main content

IGameSaveData_ProcCopyMethods

Trait IGameSaveData_ProcCopyMethods 

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

Source

fn ctor(self, save_data: impl Into<GameSaveData>)

.ctor(crate::app::gamesavedata::GameSaveData) overload

Source

fn message_open(self)

MessageOpen() overload

Source

fn read(self)

Read() overload

Source

fn write(self)

Write() overload

Source

fn success(self)

Success() 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: IGameSaveData_ProcCopy> IGameSaveData_ProcCopyMethods for __T

Available on crate feature app-gamesavedata only.