pub struct GeneratorArguments {
pub argument: Vec<String>,
}Expand description
Deprecated arguments wrapper; use exe.argument instead
Fields§
§argument: Vec<String>Individual argument strings (0..*)
Trait Implementations§
Source§impl Clone for GeneratorArguments
impl Clone for GeneratorArguments
Source§fn clone(&self) -> GeneratorArguments
fn clone(&self) -> GeneratorArguments
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 moreSource§impl Debug for GeneratorArguments
impl Debug for GeneratorArguments
Source§impl Default for GeneratorArguments
impl Default for GeneratorArguments
Source§fn default() -> GeneratorArguments
fn default() -> GeneratorArguments
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeneratorArguments
impl<'de> Deserialize<'de> for GeneratorArguments
Source§fn 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
impl Eq for GeneratorArguments
Source§impl PartialEq for GeneratorArguments
impl PartialEq for GeneratorArguments
Source§impl Serialize for GeneratorArguments
impl Serialize for GeneratorArguments
impl StructuralPartialEq for GeneratorArguments
Auto Trait Implementations§
impl Freeze for GeneratorArguments
impl RefUnwindSafe for GeneratorArguments
impl Send for GeneratorArguments
impl Sync for GeneratorArguments
impl Unpin for GeneratorArguments
impl UnsafeUnpin for GeneratorArguments
impl UnwindSafe for GeneratorArguments
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