Sign in
apache
/
iggy
/
refs/heads/appendable_message
/
.
/
cli
/
src
/
args
/
system.rs
blob: a9e5941278be20da2460a4a13c4bc91a6f13e2be [
file
]
use
clap
::
Args
;
#[
derive
(
Debug
,
Clone
,
Args
)]
pub
(
crate
)
struct
PingArgs
{
/// Stop after sending count Ping packets
#[
arg
(
short
,
long
,
default_value_t
=
1
)]
pub
(
crate
)
count
:
u32
,
}