Enum diem_operational_tool::command::Command [−][src]
pub enum Command {
Show 28 variants
AccountResource(AccountResource),
AddValidator(AddValidator),
CheckEndpoint(CheckEndpoint),
CheckValidatorSetEndpoints(CheckValidatorSetEndpoints),
CreateValidator(CreateValidator),
CreateValidatorOperator(CreateValidatorOperator),
ExtractPeerFromFile(ExtractPeerFromFile),
ExtractPeerFromStorage(ExtractPeerFromStorage),
ExtractPeersFromKeys(ExtractPeersFromKeys),
ExtractPrivateKey(ExtractPrivateKey),
ExtractPublicKey(ExtractPublicKey),
GenerateKey(GenerateKey),
InsertWaypoint(InsertWaypoint),
PrintAccount(PrintAccount),
PrintKey(PrintKey),
PrintXKey(PrintXKey),
PrintWaypoint(PrintWaypoint),
RemoveValidator(RemoveValidator),
RotateConsensusKey(RotateConsensusKey),
RotateFullNodeNetworkKey(RotateFullNodeNetworkKey),
RotateOperatorKey(RotateOperatorKey),
RotateValidatorNetworkKey(RotateValidatorNetworkKey),
SetValidatorConfig(SetValidatorConfig),
SetValidatorOperator(SetValidatorOperator),
ValidateTransaction(ValidateTransaction),
ValidatorConfig(ValidatorConfig),
ValidatorSet(ValidatorSet),
VerifyValidatorState(VerifyValidatorState),
}Variants
ExtractPeerFromFile(ExtractPeerFromFile)Tuple Fields of ExtractPeerFromFile
ExtractPeerFromStorage(ExtractPeerFromStorage)Tuple Fields of ExtractPeerFromStorage
ExtractPeersFromKeys(ExtractPeersFromKeys)Tuple Fields of ExtractPeersFromKeys
ExtractPrivateKey(ExtractPrivateKey)Tuple Fields of ExtractPrivateKey
ExtractPublicKey(ExtractPublicKey)Tuple Fields of ExtractPublicKey
GenerateKey(GenerateKey)Tuple Fields of GenerateKey
0: GenerateKeyInsertWaypoint(InsertWaypoint)Tuple Fields of InsertWaypoint
Implementations
pub fn print_transaction_context(
result: Result<TransactionContext, Error>
) -> Result<String, Error>
pub fn print_transaction_context(
result: Result<TransactionContext, Error>
) -> Result<String, Error>
Show the transaction context and validation result in a friendly way
Trait Implementations
Builds the struct from clap::ArgMatches. It’s guaranteed to succeed
if matches originates from an App generated by [StructOpt::clap] called on
the same type, otherwise it must panic. Read more
fn from_args() -> Self
fn from_args() -> Self
Builds the struct from the command line arguments (std::env::args_os).
Calls clap::Error::exit on failure, printing the error message and aborting the program. Read more
fn from_args_safe() -> Result<Self, Error>
fn from_args_safe() -> Result<Self, Error>
Builds the struct from the command line arguments (std::env::args_os).
Unlike [StructOpt::from_args], returns clap::Error on failure instead of aborting the program,
so calling .exit is up to you. Read more
fn from_iter<I>(iter: I) -> Self where
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString>,
<I as IntoIterator>::Item: Clone,
fn from_iter<I>(iter: I) -> Self where
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString>,
<I as IntoIterator>::Item: Clone,
Gets the struct from any iterator such as a Vec of your making.
Print the error message and quit the program in case of failure. Read more
fn from_iter_safe<I>(iter: I) -> Result<Self, Error> where
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString>,
<I as IntoIterator>::Item: Clone,
fn from_iter_safe<I>(iter: I) -> Result<Self, Error> where
I: IntoIterator,
<I as IntoIterator>::Item: Into<OsString>,
<I as IntoIterator>::Item: Clone,
Gets the struct from any iterator such as a Vec of your making. Read more
Auto Trait Implementations
impl RefUnwindSafe for Command
impl UnwindSafe for Command
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
type Output = T
type Output = T
Should always be Self