pub enum DaemonNotification {
WatchEvent(WatchEventNotification),
JobEvent(JobEventNotification),
Log(LogEntry),
RepoStatus(RepoStatusDetail),
}Expand description
Streaming notifications emitted by the daemon.
Variants§
WatchEvent(WatchEventNotification)
JobEvent(JobEventNotification)
Log(LogEntry)
RepoStatus(RepoStatusDetail)
Trait Implementations§
Source§impl Clone for DaemonNotification
impl Clone for DaemonNotification
Source§fn clone(&self) -> DaemonNotification
fn clone(&self) -> DaemonNotification
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 DaemonNotification
impl Debug for DaemonNotification
Source§impl<'de> Deserialize<'de> for DaemonNotification
impl<'de> Deserialize<'de> for DaemonNotification
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 DaemonNotification
impl PartialEq for DaemonNotification
Source§impl Serialize for DaemonNotification
impl Serialize for DaemonNotification
impl Eq for DaemonNotification
impl StructuralPartialEq for DaemonNotification
Auto Trait Implementations§
impl Freeze for DaemonNotification
impl RefUnwindSafe for DaemonNotification
impl Send for DaemonNotification
impl Sync for DaemonNotification
impl Unpin for DaemonNotification
impl UnwindSafe for DaemonNotification
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