pub struct BuildStartedEvent {
pub fields: BuildEventArgsFields,
pub environment: Option<Vec<(String, String)>>,
}Expand description
BuildStarted event — emitted once at the start of the build.
Fields§
§fields: BuildEventArgsFields§environment: Option<Vec<(String, String)>>Environment variables at build start (key → value).
Trait Implementations§
Source§impl Clone for BuildStartedEvent
impl Clone for BuildStartedEvent
Source§fn clone(&self) -> BuildStartedEvent
fn clone(&self) -> BuildStartedEvent
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 BuildStartedEvent
impl Debug for BuildStartedEvent
Source§impl Default for BuildStartedEvent
impl Default for BuildStartedEvent
Source§fn default() -> BuildStartedEvent
fn default() -> BuildStartedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BuildStartedEvent
impl<'de> Deserialize<'de> for BuildStartedEvent
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 BuildStartedEvent
impl RefUnwindSafe for BuildStartedEvent
impl Send for BuildStartedEvent
impl Sync for BuildStartedEvent
impl Unpin for BuildStartedEvent
impl UnsafeUnpin for BuildStartedEvent
impl UnwindSafe for BuildStartedEvent
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