pub enum Plumbing {
Show 20 variants
AttachSig(AttachSig),
Canonicalize(Canonicalize),
Completions(Completions),
Config(Config),
ContainerUpdateCheck(ContainerUpdateCheck),
DbServer(DbServer),
DnsBootstrap(DnsBootstrap),
Fetch(PlumbingFetch),
Fingerprint(Fingerprint),
Fsck(Fsck),
GitObject(GitObject),
GitScrape(GitScrape),
Index(Index),
Migrate(Migrate),
Paths(Paths),
PeerdbAdd(PeerdbAdd),
PeerdbList(PeerdbList),
PeerdbGc(PeerdbGc),
SyncPull(SyncPull),
SyncYield(SyncYield),
}
Expand description
Access to low-level features
Variantsยง
AttachSig(AttachSig)
Canonicalize(Canonicalize)
Completions(Completions)
Config(Config)
ContainerUpdateCheck(ContainerUpdateCheck)
DbServer(DbServer)
DnsBootstrap(DnsBootstrap)
Fetch(PlumbingFetch)
Fingerprint(Fingerprint)
Fsck(Fsck)
GitObject(GitObject)
GitScrape(GitScrape)
Index(Index)
Migrate(Migrate)
Paths(Paths)
PeerdbAdd(PeerdbAdd)
PeerdbList(PeerdbList)
PeerdbGc(PeerdbGc)
SyncPull(SyncPull)
SyncYield(SyncYield)
Trait Implementationsยง
Sourceยงimpl FromArgMatches for Plumbing
impl FromArgMatches for Plumbing
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<'b>(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut<'b>( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches
to self
.Sourceยงimpl Subcommand for Plumbing
impl Subcommand for Plumbing
Sourceยงfn augment_subcommands<'b>(__clap_app: Command) -> Command
fn augment_subcommands<'b>(__clap_app: Command) -> Command
Sourceยงfn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
fn augment_subcommands_for_update<'b>(__clap_app: Command) -> Command
Append to
Command
so it can instantiate self
via
FromArgMatches::update_from_arg_matches_mut
Read moreSourceยงfn has_subcommand(__clap_name: &str) -> bool
fn has_subcommand(__clap_name: &str) -> bool
Test whether
Self
can parse a specific subcommandAuto Trait Implementationsยง
impl Freeze for Plumbing
impl RefUnwindSafe for Plumbing
impl Send for Plumbing
impl Sync for Plumbing
impl Unpin for Plumbing
impl UnwindSafe for Plumbing
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