pub struct ExternalCoreHealth {
pub ok: bool,
pub ready: bool,
pub backend: String,
pub binary_version: String,
pub agent_version: String,
pub protocol_version: u32,
pub instance_id: Option<String>,
pub pid: Option<u32>,
pub state: Option<String>,
pub started_at: Option<String>,
pub capabilities: Vec<String>,
}Fields§
§ok: bool§ready: bool§backend: String§binary_version: String§agent_version: String§protocol_version: u32§instance_id: Option<String>§pid: Option<u32>§state: Option<String>§started_at: Option<String>§capabilities: Vec<String>Trait Implementations§
Source§impl Clone for ExternalCoreHealth
impl Clone for ExternalCoreHealth
Source§fn clone(&self) -> ExternalCoreHealth
fn clone(&self) -> ExternalCoreHealth
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 ExternalCoreHealth
impl Debug for ExternalCoreHealth
Source§impl<'de> Deserialize<'de> for ExternalCoreHealth
impl<'de> Deserialize<'de> for ExternalCoreHealth
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
Auto Trait Implementations§
impl Freeze for ExternalCoreHealth
impl RefUnwindSafe for ExternalCoreHealth
impl Send for ExternalCoreHealth
impl Sync for ExternalCoreHealth
impl Unpin for ExternalCoreHealth
impl UnsafeUnpin for ExternalCoreHealth
impl UnwindSafe for ExternalCoreHealth
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