pub struct CustomCommandDraft {
pub template: CustomTemplate,
pub rpc_preset: String,
pub raw_args: String,
pub param_values: BTreeMap<String, String>,
pub merged_args: Vec<String>,
pub resolved_args: Vec<String>,
pub display_args: Vec<String>,
pub display_commandline: String,
pub rpc_url: Option<String>,
}Fields§
§template: CustomTemplate§rpc_preset: String§raw_args: String§param_values: BTreeMap<String, String>§merged_args: Vec<String>§resolved_args: Vec<String>§display_args: Vec<String>§display_commandline: String§rpc_url: Option<String>Trait Implementations§
Source§impl Clone for CustomCommandDraft
impl Clone for CustomCommandDraft
Source§fn clone(&self) -> CustomCommandDraft
fn clone(&self) -> CustomCommandDraft
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 CustomCommandDraft
impl RefUnwindSafe for CustomCommandDraft
impl Send for CustomCommandDraft
impl Sync for CustomCommandDraft
impl Unpin for CustomCommandDraft
impl UnsafeUnpin for CustomCommandDraft
impl UnwindSafe for CustomCommandDraft
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