pub trait IHelpItemCapabilityMethods: IHelpItemCapability {
// Provided methods
fn is_valid(self) -> bool { ... }
fn set_contents(self, setter: impl Into<HelpParamSetter>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_contents(self, setter: impl Into<HelpParamSetter>)
fn set_contents(self, setter: impl Into<HelpParamSetter>)
SetContents(crate::app::helpparamsetter::HelpParamSetter) 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: IHelpItemCapability> IHelpItemCapabilityMethods for __T
Available on crate feature
app-helpitemcapability only.