pub struct TransitionEvent {
pub at: DateTime<Utc>,
pub job_id: JobId,
pub from: JobPhase,
pub to: JobPhase,
pub reason: TransitionReason,
pub tool: String,
}Fields§
§at: DateTime<Utc>§job_id: JobId§from: JobPhase§to: JobPhase§reason: TransitionReason§tool: StringConsumer-name tag (e.g. “tend”, “forge-gen”). Stored as String for serde compatibility.
Trait Implementations§
Source§impl Clone for TransitionEvent
impl Clone for TransitionEvent
Source§fn clone(&self) -> TransitionEvent
fn clone(&self) -> TransitionEvent
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 TransitionEvent
impl Debug for TransitionEvent
Source§impl<'de> Deserialize<'de> for TransitionEvent
impl<'de> Deserialize<'de> for TransitionEvent
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 TransitionEvent
impl RefUnwindSafe for TransitionEvent
impl Send for TransitionEvent
impl Sync for TransitionEvent
impl Unpin for TransitionEvent
impl UnsafeUnpin for TransitionEvent
impl UnwindSafe for TransitionEvent
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