enum CiCommand {
Style,
Typos,
Clippy,
Docs,
TestFeatures {
cmd: Option<FeatureSet>,
},
Wasm {
cmd: Option<WasmFeatureSet>,
},
WasmPack {
cmd: Option<WasmFeatureSet>,
},
TestCrypto,
Bindings,
Examples,
}
Variants§
Style
Check style
Typos
Check for typos
Clippy
Check clippy lints
Docs
Check documentation
TestFeatures
Run tests with a specific feature set
Fields
§
cmd: Option<FeatureSet>
Wasm
Run clippy checks for the wasm target
Fields
§
cmd: Option<WasmFeatureSet>
WasmPack
Run tests with wasm-pack test
Fields
§
cmd: Option<WasmFeatureSet>
TestCrypto
Run tests for the different crypto crate features
Bindings
Check that bindings can be generated
Examples
Check that the examples compile
Trait Implementations§
source§impl FromArgMatches for CiCommand
impl FromArgMatches for CiCommand
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 CiCommand
impl Subcommand for CiCommand
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
source§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 CiCommand
impl RefUnwindSafe for CiCommand
impl Send for CiCommand
impl Sync for CiCommand
impl Unpin for CiCommand
impl UnwindSafe for CiCommand
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