Enum lucas_test::scope::ExecuteArgs
source · [−]Expand description
Allowed representation of Execute command arguments.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
None
No arguments
Single(String)
A single string argument
List(Vec<String>)
Multiple string arguments
Implementations
sourceimpl ExecuteArgs
impl ExecuteArgs
Trait Implementations
sourceimpl Clone for ExecuteArgs
impl Clone for ExecuteArgs
sourcefn clone(&self) -> ExecuteArgs
fn clone(&self) -> ExecuteArgs
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 more
sourceimpl Debug for ExecuteArgs
impl Debug for ExecuteArgs
sourceimpl<'de> Deserialize<'de> for ExecuteArgs
impl<'de> Deserialize<'de> for ExecuteArgs
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<String> for ExecuteArgs
impl From<String> for ExecuteArgs
Auto Trait Implementations
impl RefUnwindSafe for ExecuteArgs
impl Send for ExecuteArgs
impl Sync for ExecuteArgs
impl Unpin for ExecuteArgs
impl UnwindSafe for ExecuteArgs
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<'de, D, R> CommandArg<'de, R> for D where
D: Deserialize<'de>,
R: Runtime,
impl<'de, D, R> CommandArg<'de, R> for D where
D: Deserialize<'de>,
R: Runtime,
sourcefn from_command(command: CommandItem<'de, R>) -> Result<Self, InvokeError>
fn from_command(command: CommandItem<'de, R>) -> Result<Self, InvokeError>
Derives an instance of Self from the CommandItem. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more