pub struct TaskFinishedEvent {
pub fields: BuildEventArgsFields,
pub succeeded: bool,
pub task_name: Option<String>,
pub project_file: Option<String>,
pub task_file: Option<String>,
}Expand description
TaskFinished event.
Fields§
§fields: BuildEventArgsFields§succeeded: bool§task_name: Option<String>§project_file: Option<String>§task_file: Option<String>Trait Implementations§
Source§impl Clone for TaskFinishedEvent
impl Clone for TaskFinishedEvent
Source§fn clone(&self) -> TaskFinishedEvent
fn clone(&self) -> TaskFinishedEvent
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 TaskFinishedEvent
impl Debug for TaskFinishedEvent
Source§impl Default for TaskFinishedEvent
impl Default for TaskFinishedEvent
Source§fn default() -> TaskFinishedEvent
fn default() -> TaskFinishedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskFinishedEvent
impl<'de> Deserialize<'de> for TaskFinishedEvent
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 TaskFinishedEvent
impl RefUnwindSafe for TaskFinishedEvent
impl Send for TaskFinishedEvent
impl Sync for TaskFinishedEvent
impl Unpin for TaskFinishedEvent
impl UnsafeUnpin for TaskFinishedEvent
impl UnwindSafe for TaskFinishedEvent
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