pub struct LocalServiceReport {Show 15 fields
pub name: String,
pub provider: String,
pub enabled: bool,
pub configured: bool,
pub managed: bool,
pub running: bool,
pub ready: bool,
pub model: String,
pub model_path: PathBuf,
pub endpoint: String,
pub port: u16,
pub pid: Option<u32>,
pub pid_file: PathBuf,
pub log_file: PathBuf,
pub issue: Option<String>,
}Fields§
§name: String§provider: String§enabled: bool§configured: bool§managed: bool§running: bool§ready: bool§model: String§model_path: PathBuf§endpoint: String§port: u16§pid: Option<u32>§pid_file: PathBuf§log_file: PathBuf§issue: Option<String>Trait Implementations§
Source§impl Clone for LocalServiceReport
impl Clone for LocalServiceReport
Source§fn clone(&self) -> LocalServiceReport
fn clone(&self) -> LocalServiceReport
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 LocalServiceReport
impl Debug for LocalServiceReport
Source§impl<'de> Deserialize<'de> for LocalServiceReport
impl<'de> Deserialize<'de> for LocalServiceReport
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 LocalServiceReport
impl PartialEq for LocalServiceReport
Source§fn eq(&self, other: &LocalServiceReport) -> bool
fn eq(&self, other: &LocalServiceReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LocalServiceReport
impl Serialize for LocalServiceReport
impl Eq for LocalServiceReport
impl StructuralPartialEq for LocalServiceReport
Auto Trait Implementations§
impl Freeze for LocalServiceReport
impl RefUnwindSafe for LocalServiceReport
impl Send for LocalServiceReport
impl Sync for LocalServiceReport
impl Unpin for LocalServiceReport
impl UnsafeUnpin for LocalServiceReport
impl UnwindSafe for LocalServiceReport
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