pub struct JobEventNotification {
pub repo_path: PathBuf,
pub job: JobKind,
pub kind: JobEventKind,
}Expand description
Lifecycle event for a background job.
Fields§
§repo_path: PathBuf§job: JobKind§kind: JobEventKindTrait Implementations§
Source§impl Clone for JobEventNotification
impl Clone for JobEventNotification
Source§fn clone(&self) -> JobEventNotification
fn clone(&self) -> JobEventNotification
Returns a duplicate of the value. Read more
1.0.0 · 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 JobEventNotification
impl Debug for JobEventNotification
Source§impl<'de> Deserialize<'de> for JobEventNotification
impl<'de> Deserialize<'de> for JobEventNotification
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
Source§impl PartialEq for JobEventNotification
impl PartialEq for JobEventNotification
Source§impl Serialize for JobEventNotification
impl Serialize for JobEventNotification
impl Eq for JobEventNotification
impl StructuralPartialEq for JobEventNotification
Auto Trait Implementations§
impl Freeze for JobEventNotification
impl RefUnwindSafe for JobEventNotification
impl Send for JobEventNotification
impl Sync for JobEventNotification
impl Unpin for JobEventNotification
impl UnwindSafe for JobEventNotification
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