#[repr(C)]pub struct aws_cli_subcommand_dispatch {
pub subcommand_fn: aws_cli_options_subcommand_fn,
pub command_name: *const c_char,
}
Expand description
Dispatch table to dispatch cli commands from. command_name should be the exact string for the command you want to handle from the command line.
Fields
subcommand_fn: aws_cli_options_subcommand_fn
command_name: *const c_char
Trait Implementations
sourceimpl Clone for aws_cli_subcommand_dispatch
impl Clone for aws_cli_subcommand_dispatch
sourcefn clone(&self) -> aws_cli_subcommand_dispatch
fn clone(&self) -> aws_cli_subcommand_dispatch
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_cli_subcommand_dispatch
impl Debug for aws_cli_subcommand_dispatch
sourceimpl Default for aws_cli_subcommand_dispatch
impl Default for aws_cli_subcommand_dispatch
sourceimpl PartialEq<aws_cli_subcommand_dispatch> for aws_cli_subcommand_dispatch
impl PartialEq<aws_cli_subcommand_dispatch> for aws_cli_subcommand_dispatch
sourcefn eq(&self, other: &aws_cli_subcommand_dispatch) -> bool
fn eq(&self, other: &aws_cli_subcommand_dispatch) -> bool
impl Copy for aws_cli_subcommand_dispatch
impl Eq for aws_cli_subcommand_dispatch
impl StructuralEq for aws_cli_subcommand_dispatch
impl StructuralPartialEq for aws_cli_subcommand_dispatch
Auto Trait Implementations
impl RefUnwindSafe for aws_cli_subcommand_dispatch
impl !Send for aws_cli_subcommand_dispatch
impl !Sync for aws_cli_subcommand_dispatch
impl Unpin for aws_cli_subcommand_dispatch
impl UnwindSafe for aws_cli_subcommand_dispatch
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more