pub trait IHelpManager_ItemMethods: IHelpManager_Item {
// Provided methods
fn ctor(self, item: impl Into<HelpItemBase>) { ... }
fn get_up(self) -> f32 { ... }
fn get_down(self) -> f32 { ... }
fn get_left(self) -> f32 { ... }
fn get_right(self) -> f32 { ... }
}Provided Methods§
Sourcefn ctor(self, item: impl Into<HelpItemBase>)
fn ctor(self, item: impl Into<HelpItemBase>)
.ctor(crate::app::helpitembase::HelpItemBase) 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: IHelpManager_Item> IHelpManager_ItemMethods for __T
Available on crate feature
app-helpmanager only.