pub struct ParsedToolArgs {
pub command: CommandDef,
pub values: BTreeMap<String, Value>,
pub stdin: bool,
}Fields§
§command: CommandDef§values: BTreeMap<String, Value>§stdin: boolTrait Implementations§
Source§impl Clone for ParsedToolArgs
impl Clone for ParsedToolArgs
Source§fn clone(&self) -> ParsedToolArgs
fn clone(&self) -> ParsedToolArgs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsedToolArgs
impl RefUnwindSafe for ParsedToolArgs
impl Send for ParsedToolArgs
impl Sync for ParsedToolArgs
impl Unpin for ParsedToolArgs
impl UnsafeUnpin for ParsedToolArgs
impl UnwindSafe for ParsedToolArgs
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