pub trait IMapHistory_RewindLogBuilderMethods: IMapHistory_RewindLogBuilder {
// Provided methods
fn ctor(self) { ... }
fn prepare(self, log: impl Into<MapHistory_RewindLog>) { ... }
fn clear(self) { ... }
fn need_to_build(self) { ... }
fn get_log(self) -> MapHistory_RewindLog { ... }
fn get_is_need_to_build(self) -> bool { ... }
}Provided Methods§
Sourcefn prepare(self, log: impl Into<MapHistory_RewindLog>)
fn prepare(self, log: impl Into<MapHistory_RewindLog>)
Prepare(crate::app::maphistory::MapHistory_RewindLog) overload
Sourcefn need_to_build(self)
fn need_to_build(self)
NeedToBuild() overload
Sourcefn get_log(self) -> MapHistory_RewindLog
fn get_log(self) -> MapHistory_RewindLog
get_Log() overload
Sourcefn get_is_need_to_build(self) -> bool
fn get_is_need_to_build(self) -> bool
get_IsNeedToBuild() 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: IMapHistory_RewindLogBuilder> IMapHistory_RewindLogBuilderMethods for __T
Available on crate feature
app-maphistory only.