pub trait IGameSaveData_ProcWrite: IGameSaveData_ProcBase {
// Provided methods
fn m_stream(self) -> Stream_2 { ... }
fn set_m_stream(self, value: Stream_2) { ... }
fn m_data(self) -> Array<u8> { ... }
fn set_m_data(self, value: Array<u8>) { ... }
}Provided Methods§
fn m_stream(self) -> Stream_2
fn set_m_stream(self, value: Stream_2)
fn m_data(self) -> Array<u8>
fn set_m_data(self, value: Array<u8>)
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.