pub struct EditAddExampleCommand {
pub target: String,
pub at: Option<usize>,
pub file: Option<String>,
pub code: Option<String>,
pub json: Option<String>,
pub json_input: bool,
pub leaf: bool,
}Expand description
add a single example to definition
Fields§
§target: Stringtarget in format “namespace/definition”
at: Option<usize>position to insert at (default: append to end)
file: Option<String>read example from file (Cirru format by default, use -J for JSON)
code: Option<String>example as inline Cirru text (or JSON when used with -J/–json-input)
json: Option<String>example as inline JSON string
json_input: booltreat file input as JSON
leaf: booltreat input as a Cirru leaf node (single symbol or string, no JSON quotes; e.g. –leaf -e ‘sym’ or –leaf -e ‘|text’)
Trait Implementations§
Source§impl Clone for EditAddExampleCommand
impl Clone for EditAddExampleCommand
Source§fn clone(&self) -> EditAddExampleCommand
fn clone(&self) -> EditAddExampleCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EditAddExampleCommand
impl Debug for EditAddExampleCommand
Source§impl FromArgs for EditAddExampleCommand
impl FromArgs for EditAddExampleCommand
Source§fn from_args(__cmd_name: &[&str], __args: &[&str]) -> Result<Self, EarlyExit>
fn from_args(__cmd_name: &[&str], __args: &[&str]) -> Result<Self, EarlyExit>
Construct the type from an input set of arguments. Read more
Source§fn redact_arg_values(
__cmd_name: &[&str],
__args: &[&str],
) -> Result<Vec<String>, EarlyExit>
fn redact_arg_values( __cmd_name: &[&str], __args: &[&str], ) -> Result<Vec<String>, EarlyExit>
Get a String with just the argument names, e.g., options, flags, subcommands, etc, but
without the values of the options and arguments. This can be useful as a means to capture
anonymous usage statistics without revealing the content entered by the end user. Read more
Source§impl PartialEq for EditAddExampleCommand
impl PartialEq for EditAddExampleCommand
Source§impl SubCommand for EditAddExampleCommand
impl SubCommand for EditAddExampleCommand
Source§const COMMAND: &'static CommandInfo
const COMMAND: &'static CommandInfo
Information about the subcommand.
impl StructuralPartialEq for EditAddExampleCommand
Auto Trait Implementations§
impl Freeze for EditAddExampleCommand
impl RefUnwindSafe for EditAddExampleCommand
impl Send for EditAddExampleCommand
impl Sync for EditAddExampleCommand
impl Unpin for EditAddExampleCommand
impl UnsafeUnpin for EditAddExampleCommand
impl UnwindSafe for EditAddExampleCommand
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SubCommands for Twhere
T: SubCommand,
impl<T> SubCommands for Twhere
T: SubCommand,
Source§const COMMANDS: &'static [&'static CommandInfo<'static>]
const COMMANDS: &'static [&'static CommandInfo<'static>]
Info for the commands.
Source§fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
fn dynamic_commands() -> &'static [&'static CommandInfo<'static>]
Get a list of commands that are discovered at runtime.