pub struct TargetStartedEvent {
pub fields: BuildEventArgsFields,
pub target_name: Option<String>,
pub project_file: Option<String>,
pub target_file: Option<String>,
pub parent_target: Option<String>,
pub build_reason: i32,
}Expand description
TargetStarted event.
Fields§
§fields: BuildEventArgsFields§target_name: Option<String>§project_file: Option<String>§target_file: Option<String>§parent_target: Option<String>§build_reason: i32TargetBuiltReason (introduced in format version 4).
Trait Implementations§
Source§impl Clone for TargetStartedEvent
impl Clone for TargetStartedEvent
Source§fn clone(&self) -> TargetStartedEvent
fn clone(&self) -> TargetStartedEvent
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 TargetStartedEvent
impl Debug for TargetStartedEvent
Source§impl Default for TargetStartedEvent
impl Default for TargetStartedEvent
Source§fn default() -> TargetStartedEvent
fn default() -> TargetStartedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TargetStartedEvent
impl<'de> Deserialize<'de> for TargetStartedEvent
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 TargetStartedEvent
impl RefUnwindSafe for TargetStartedEvent
impl Send for TargetStartedEvent
impl Sync for TargetStartedEvent
impl Unpin for TargetStartedEvent
impl UnsafeUnpin for TargetStartedEvent
impl UnwindSafe for TargetStartedEvent
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