pub struct CommandExamples;
Expand description
Enhanced CLI help text with detailed examples and usage patterns This module provides rich help content for all RustChain CLI commands
Implementations§
Source§impl CommandExamples
impl CommandExamples
Sourcepub fn mission_help() -> &'static str
pub fn mission_help() -> &'static str
Get detailed help for mission commands
Sourcepub fn tools_help() -> &'static str
pub fn tools_help() -> &'static str
Get detailed help for tools commands
Sourcepub fn safety_help() -> &'static str
pub fn safety_help() -> &'static str
Get detailed help for safety commands
Sourcepub fn policy_help() -> &'static str
pub fn policy_help() -> &'static str
Get detailed help for policy commands
Sourcepub fn interactive_help() -> &'static str
pub fn interactive_help() -> &'static str
Get detailed help for interactive mode
Sourcepub fn enterprise_help() -> &'static str
pub fn enterprise_help() -> &'static str
Get detailed help for enterprise commands
Sourcepub fn features_help() -> &'static str
pub fn features_help() -> &'static str
Get comprehensive feature help
Auto Trait Implementations§
impl Freeze for CommandExamples
impl RefUnwindSafe for CommandExamples
impl Send for CommandExamples
impl Sync for CommandExamples
impl Unpin for CommandExamples
impl UnwindSafe for CommandExamples
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more