pub struct WatchStatusResponse {
pub service: WatchServiceStatus,
pub runtime: Option<WatchRuntimeStatus>,
pub log_file: PathBuf,
pub state_file: PathBuf,
}Fields§
§service: WatchServiceStatus§runtime: Option<WatchRuntimeStatus>§log_file: PathBuf§state_file: PathBufTrait Implementations§
Source§impl Clone for WatchStatusResponse
impl Clone for WatchStatusResponse
Source§fn clone(&self) -> WatchStatusResponse
fn clone(&self) -> WatchStatusResponse
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 WatchStatusResponse
impl Debug for WatchStatusResponse
Source§impl<'de> Deserialize<'de> for WatchStatusResponse
impl<'de> Deserialize<'de> for WatchStatusResponse
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 WatchStatusResponse
impl PartialEq for WatchStatusResponse
Source§fn eq(&self, other: &WatchStatusResponse) -> bool
fn eq(&self, other: &WatchStatusResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for WatchStatusResponse
impl Serialize for WatchStatusResponse
impl Eq for WatchStatusResponse
impl StructuralPartialEq for WatchStatusResponse
Auto Trait Implementations§
impl Freeze for WatchStatusResponse
impl RefUnwindSafe for WatchStatusResponse
impl Send for WatchStatusResponse
impl Sync for WatchStatusResponse
impl Unpin for WatchStatusResponse
impl UnsafeUnpin for WatchStatusResponse
impl UnwindSafe for WatchStatusResponse
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