Struct aleo_development_server::CLI
source · pub struct CLI {
pub command: Command,
}Expand description
The Aleo Development Server is a tool to help developers build and deploy Aleo programs. The server is built in Rust and performs the proving and verification operations required to deploy and execute Aleo programs. Once it has performed these operations, the resulting deployments or executions will be broadcast to the Aleo Network. The server receives the information necessary to deploy and execute programs from the user via a REST API. Developers can use any language of choice (javascript, python, etc..) to send RESTful requests to the server. This server is meant to be used in trusted contexts such as local dev environments or a trusted private network within a cloud environment, etc. and should not be used to create a public API. A javascript client for this server is available in the Aleo SDK - https://www.npmjs.com/package/@aleohq/sdk
Fields§
§command: CommandDevelopment Server subcommands
Trait Implementations§
source§impl CommandFactory for CLI
impl CommandFactory for CLI
source§fn into_app_for_update<'b>() -> Command<'b>
fn into_app_for_update<'b>() -> Command<'b>
CommandFactory::command_for_updatesource§impl FromArgMatches for CLI
impl FromArgMatches for CLI
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(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
ArgMatches to self.