pub struct ThreadCounts {
pub running: i64,
pub waiting: i64,
pub timed_waiting: i64,
pub blocked: i64,
pub extra: BTreeMap<String, Value>,
}Expand description
GET /data/api/v1/systemPerformance/threads — live capture:
{running: 32, waiting: 39, timedWaiting: 51, blocked: 0}.
Fields§
§running: i64Threads currently executing.
waiting: i64Threads waiting to acquire a monitor.
timed_waiting: i64Threads in Thread.sleep/park-style waits.
blocked: i64Threads blocked on monitor entry.
extra: BTreeMap<String, Value>Unknown keys round-trip.
Trait Implementations§
Source§impl Clone for ThreadCounts
impl Clone for ThreadCounts
Source§fn clone(&self) -> ThreadCounts
fn clone(&self) -> ThreadCounts
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 ThreadCounts
impl Debug for ThreadCounts
Source§impl<'de> Deserialize<'de> for ThreadCounts
impl<'de> Deserialize<'de> for ThreadCounts
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
impl Eq for ThreadCounts
Source§impl PartialEq for ThreadCounts
impl PartialEq for ThreadCounts
Source§impl Serialize for ThreadCounts
impl Serialize for ThreadCounts
impl StructuralPartialEq for ThreadCounts
Auto Trait Implementations§
impl Freeze for ThreadCounts
impl RefUnwindSafe for ThreadCounts
impl Send for ThreadCounts
impl Sync for ThreadCounts
impl Unpin for ThreadCounts
impl UnsafeUnpin for ThreadCounts
impl UnwindSafe for ThreadCounts
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.