pub trait IMapRankingMethods: IMapRanking {
// Provided methods
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn register_unit(self) { ... }
fn upload(self, super_: impl Into<ProcInst>) -> bool { ... }
fn get_chapter(self) -> ChapterData { ... }
fn get_version(self) -> i32 { ... }
fn on_serialize(self, stream: impl Into<Stream_2>) { ... }
fn on_deserialize(
self,
stream: impl Into<Stream_2>,
version: impl Into<i32>,
) { ... }
fn dbg_dump(self) { ... }
fn clear_net_succeeded(self) { ... }
fn get_is_net_succeeded(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn register_unit(self)
fn register_unit(self)
RegisterUnit() overload
Sourcefn upload(self, super_: impl Into<ProcInst>) -> bool
fn upload(self, super_: impl Into<ProcInst>) -> bool
Upload(crate::app::procinst::ProcInst) overload
Sourcefn get_chapter(self) -> ChapterData
fn get_chapter(self) -> ChapterData
GetChapter() overload
Sourcefn get_version(self) -> i32
fn get_version(self) -> i32
get_Version() overload
Sourcefn on_serialize(self, stream: impl Into<Stream_2>)
fn on_serialize(self, stream: impl Into<Stream_2>)
OnSerialize(crate::app::stream_2::Stream_2) overload
Sourcefn on_deserialize(self, stream: impl Into<Stream_2>, version: impl Into<i32>)
fn on_deserialize(self, stream: impl Into<Stream_2>, version: impl Into<i32>)
OnDeserialize(crate::app::stream_2::Stream_2, i32) overload
Sourcefn clear_net_succeeded(self)
fn clear_net_succeeded(self)
ClearNetSucceeded() overload
Sourcefn get_is_net_succeeded(self) -> bool
fn get_is_net_succeeded(self) -> bool
get_IsNetSucceeded() 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: IMapRanking> IMapRankingMethods for __T
Available on crate feature
app-mapranking only.