pub enum Objects {
Services,
Images {
filter: Option<String>,
tag: Option<String>,
tag_filter: Option<String>,
ignore_unauthorized: bool,
no_slug: bool,
offline: bool,
progress: bool,
threads: u8,
},
Depends {
service: String,
},
Volumes,
Networks,
Configs,
Secrets,
Profiles,
Envs {
service: String,
},
}
Variants§
Services
List services
Images
List images
Fields
filter: Option<String>
filter by a property, if –tag is used as well, this filter is applied first, filtering out images that don’t match the filter. Currently only tag=TAG is supported
tag: Option<String>
print images with the tag passed instead of the one set in the file if they exist locally or in the remote docker registry
tag_filter: Option<String>
use with –tag to filter which images should be checked whether the tag exists or not, but images that don’t match the filter are not filtered out from the list printed, only printed with the tag they have in the compose file. Currently only regex=EXPR or regex!=EXPR are supported
ignore unauthorized errors from docker when fetching remote tags info
Depends
List service’s depends_on
Volumes
List volumes
Networks
List networks
Configs
List configs
Secrets
List secrets
Profiles
List profiles
Envs
List service’s environment variables
Trait Implementations§
Source§impl FromArgMatches for Objects
impl FromArgMatches for Objects
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>
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>
ArgMatches
to self
.Source§impl Subcommand for Objects
impl Subcommand for Objects
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
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
Self
can parse a specific subcommand