pub struct ServiceStatusResponse {Show 13 fields
pub metadata: ApiMetadata,
pub service_name: String,
pub mode: String,
pub background_enabled: bool,
pub silent_updates_enabled: bool,
pub service_definition_path: String,
pub index_refresh: IndexRefreshDiagnostics,
pub file_index: FileIndexDiagnostics,
pub agent_protocols: AgentProtocolStatus,
pub operator: ServiceOperatorStatus,
pub workers: Vec<WorkerStatus>,
pub proposal_backlog: usize,
pub audit_sink: AuditSinkStatus,
}Expand description
Service manager status surfaced without exposing platform-specific handles.
Fields§
§metadata: ApiMetadata§service_name: String§mode: String§background_enabled: bool§silent_updates_enabled: bool§service_definition_path: String§index_refresh: IndexRefreshDiagnostics§file_index: FileIndexDiagnostics§agent_protocols: AgentProtocolStatus§operator: ServiceOperatorStatus§workers: Vec<WorkerStatus>§proposal_backlog: usize§audit_sink: AuditSinkStatusTrait Implementations§
Source§impl Clone for ServiceStatusResponse
impl Clone for ServiceStatusResponse
Source§fn clone(&self) -> ServiceStatusResponse
fn clone(&self) -> ServiceStatusResponse
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 ServiceStatusResponse
impl Debug for ServiceStatusResponse
Source§impl<'de> Deserialize<'de> for ServiceStatusResponse
impl<'de> Deserialize<'de> for ServiceStatusResponse
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 ServiceStatusResponse
impl PartialEq for ServiceStatusResponse
Source§fn eq(&self, other: &ServiceStatusResponse) -> bool
fn eq(&self, other: &ServiceStatusResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ServiceStatusResponse
impl Serialize for ServiceStatusResponse
impl Eq for ServiceStatusResponse
impl StructuralPartialEq for ServiceStatusResponse
Auto Trait Implementations§
impl Freeze for ServiceStatusResponse
impl RefUnwindSafe for ServiceStatusResponse
impl Send for ServiceStatusResponse
impl Sync for ServiceStatusResponse
impl Unpin for ServiceStatusResponse
impl UnsafeUnpin for ServiceStatusResponse
impl UnwindSafe for ServiceStatusResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.