pub struct NodeStatsDetails {
pub algorithms: Option<Algorithms>,
pub ml_jvm_heap_usage: Option<u32>,
pub ml_deployed_model_count: Option<u32>,
pub ml_executing_task_count: Option<u32>,
pub ml_failure_count: Option<u32>,
pub models: Option<Models>,
pub ml_request_count: Option<u32>,
pub ml_circuit_breaker_trigger_count: Option<u32>,
}Fields§
§algorithms: Option<Algorithms>§ml_jvm_heap_usage: Option<u32>The JVM heap usage.
ml_deployed_model_count: Option<u32>The deployed model count.
ml_executing_task_count: Option<u32>The executing task count.
ml_failure_count: Option<u32>The failure count.
models: Option<Models>§ml_request_count: Option<u32>The request count.
ml_circuit_breaker_trigger_count: Option<u32>The circuit breaker trigger count.
Implementations§
Source§impl NodeStatsDetails
impl NodeStatsDetails
pub fn new() -> NodeStatsDetails
Trait Implementations§
Source§impl Clone for NodeStatsDetails
impl Clone for NodeStatsDetails
Source§fn clone(&self) -> NodeStatsDetails
fn clone(&self) -> NodeStatsDetails
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 NodeStatsDetails
impl Debug for NodeStatsDetails
Source§impl Default for NodeStatsDetails
impl Default for NodeStatsDetails
Source§fn default() -> NodeStatsDetails
fn default() -> NodeStatsDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeStatsDetails
impl<'de> Deserialize<'de> for NodeStatsDetails
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 NodeStatsDetails
impl PartialEq for NodeStatsDetails
Source§fn eq(&self, other: &NodeStatsDetails) -> bool
fn eq(&self, other: &NodeStatsDetails) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NodeStatsDetails
impl Serialize for NodeStatsDetails
impl StructuralPartialEq for NodeStatsDetails
Auto Trait Implementations§
impl Freeze for NodeStatsDetails
impl RefUnwindSafe for NodeStatsDetails
impl Send for NodeStatsDetails
impl Sync for NodeStatsDetails
impl Unpin for NodeStatsDetails
impl UnsafeUnpin for NodeStatsDetails
impl UnwindSafe for NodeStatsDetails
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