pub struct NodesCommand {
pub health: bool,
pub dependencies: bool,
pub staleness: bool,
pub discovery: bool,
pub all: bool,
pub node_type: Option<String>,
pub unhealthy: bool,
}Expand description
Nodes command arguments
Fields§
§health: boolShow node health inspection
dependencies: boolShow dependency graph visualization
staleness: boolShow staleness detection
discovery: boolShow communication partner discovery
all: boolShow all node information
node_type: Option<String>Filter by node type
unhealthy: boolShow only unhealthy nodes
Trait Implementations§
Source§impl Args for NodesCommand
impl Args for NodesCommand
Source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
Report the [
ArgGroup::id][crate::ArgGroup::id] for this set of argumentsSource§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Append to [
Command] so it can instantiate self via
[FromArgMatches::update_from_arg_matches_mut] Read moreSource§impl CliCommand for NodesCommand
impl CliCommand for NodesCommand
Source§impl Debug for NodesCommand
impl Debug for NodesCommand
Source§impl FromArgMatches for NodesCommand
impl FromArgMatches for NodesCommand
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for NodesCommand
impl RefUnwindSafe for NodesCommand
impl Send for NodesCommand
impl Sync for NodesCommand
impl Unpin for NodesCommand
impl UnwindSafe for NodesCommand
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