pub struct PullEvent {
pub at_ms: i64,
pub kind: PullEventKind,
}Expand description
One line of a job’s history.
Fields§
§at_ms: i64When it happened, epoch milliseconds.
kind: PullEventKindWhat happened.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PullEvent
impl<'de> Deserialize<'de> for PullEvent
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
impl StructuralPartialEq for PullEvent
Auto Trait Implementations§
impl Freeze for PullEvent
impl RefUnwindSafe for PullEvent
impl Send for PullEvent
impl Sync for PullEvent
impl Unpin for PullEvent
impl UnsafeUnpin for PullEvent
impl UnwindSafe for PullEvent
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