pub trait IMapInfoBaseMethods: IMapInfoBase {
// Provided methods
fn set_enable(self, enable: impl Into<bool>) { ... }
fn is_enable(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_enable(self, enable: impl Into<bool>)
fn set_enable(self, enable: impl Into<bool>)
SetEnable(bool) 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: IMapInfoBase> IMapInfoBaseMethods for __T
Available on crate feature
app-mapinfobase only.