pub struct WatchServiceStatus {
pub enabled: bool,
pub running: bool,
pub backend: WatchBackend,
pub pid: Option<u32>,
pub issue: Option<String>,
}Fields§
§enabled: bool§running: bool§backend: WatchBackend§pid: Option<u32>§issue: Option<String>Trait Implementations§
Source§impl Clone for WatchServiceStatus
impl Clone for WatchServiceStatus
Source§fn clone(&self) -> WatchServiceStatus
fn clone(&self) -> WatchServiceStatus
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 WatchServiceStatus
impl Debug for WatchServiceStatus
Source§impl<'de> Deserialize<'de> for WatchServiceStatus
impl<'de> Deserialize<'de> for WatchServiceStatus
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 WatchServiceStatus
impl PartialEq for WatchServiceStatus
Source§fn eq(&self, other: &WatchServiceStatus) -> bool
fn eq(&self, other: &WatchServiceStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WatchServiceStatus
impl Serialize for WatchServiceStatus
impl Eq for WatchServiceStatus
impl StructuralPartialEq for WatchServiceStatus
Auto Trait Implementations§
impl Freeze for WatchServiceStatus
impl RefUnwindSafe for WatchServiceStatus
impl Send for WatchServiceStatus
impl Sync for WatchServiceStatus
impl Unpin for WatchServiceStatus
impl UnsafeUnpin for WatchServiceStatus
impl UnwindSafe for WatchServiceStatus
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