pub struct TaskCommandLineEvent {
pub fields: BuildEventArgsFields,
pub command_line: Option<String>,
pub task_name: Option<String>,
}Expand description
TaskCommandLine event — the command line used to invoke an external tool.
Fields§
§fields: BuildEventArgsFields§command_line: Option<String>§task_name: Option<String>Trait Implementations§
Source§impl Clone for TaskCommandLineEvent
impl Clone for TaskCommandLineEvent
Source§fn clone(&self) -> TaskCommandLineEvent
fn clone(&self) -> TaskCommandLineEvent
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 TaskCommandLineEvent
impl Debug for TaskCommandLineEvent
Source§impl Default for TaskCommandLineEvent
impl Default for TaskCommandLineEvent
Source§fn default() -> TaskCommandLineEvent
fn default() -> TaskCommandLineEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskCommandLineEvent
impl<'de> Deserialize<'de> for TaskCommandLineEvent
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
Auto Trait Implementations§
impl Freeze for TaskCommandLineEvent
impl RefUnwindSafe for TaskCommandLineEvent
impl Send for TaskCommandLineEvent
impl Sync for TaskCommandLineEvent
impl Unpin for TaskCommandLineEvent
impl UnsafeUnpin for TaskCommandLineEvent
impl UnwindSafe for TaskCommandLineEvent
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