pub struct WatchCollectionStatus {
pub space: String,
pub collection: String,
pub path: PathBuf,
pub dirty: bool,
pub semantic: WatchSemanticState,
pub last_event_at: Option<String>,
pub last_keyword_refresh: Option<String>,
pub last_semantic_refresh: Option<String>,
pub last_error: Option<String>,
}Fields§
§space: String§collection: String§path: PathBuf§dirty: bool§semantic: WatchSemanticState§last_event_at: Option<String>§last_keyword_refresh: Option<String>§last_semantic_refresh: Option<String>§last_error: Option<String>Trait Implementations§
Source§impl Clone for WatchCollectionStatus
impl Clone for WatchCollectionStatus
Source§fn clone(&self) -> WatchCollectionStatus
fn clone(&self) -> WatchCollectionStatus
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 WatchCollectionStatus
impl Debug for WatchCollectionStatus
Source§impl<'de> Deserialize<'de> for WatchCollectionStatus
impl<'de> Deserialize<'de> for WatchCollectionStatus
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 WatchCollectionStatus
impl PartialEq for WatchCollectionStatus
Source§impl Serialize for WatchCollectionStatus
impl Serialize for WatchCollectionStatus
impl Eq for WatchCollectionStatus
impl StructuralPartialEq for WatchCollectionStatus
Auto Trait Implementations§
impl Freeze for WatchCollectionStatus
impl RefUnwindSafe for WatchCollectionStatus
impl Send for WatchCollectionStatus
impl Sync for WatchCollectionStatus
impl Unpin for WatchCollectionStatus
impl UnsafeUnpin for WatchCollectionStatus
impl UnwindSafe for WatchCollectionStatus
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