pub struct EndpointHealthEntry {
pub endpoint: String,
pub attempted: u64,
pub denied: u64,
pub completed: u64,
pub ok: u64,
pub err: u64,
pub avg_instr: u64,
pub total_instr: u64,
}Expand description
EndpointHealthEntry Derived endpoint-level health view joined at read time.
Fields§
§endpoint: String§attempted: u64§denied: u64§completed: u64§ok: u64§err: u64§avg_instr: u64§total_instr: u64Trait Implementations§
Source§impl CandidType for EndpointHealthEntry
impl CandidType for EndpointHealthEntry
Source§impl Clone for EndpointHealthEntry
impl Clone for EndpointHealthEntry
Source§fn clone(&self) -> EndpointHealthEntry
fn clone(&self) -> EndpointHealthEntry
Returns a duplicate of the value. Read more
1.0.0 · 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 EndpointHealthEntry
impl Debug for EndpointHealthEntry
Source§impl<'de> Deserialize<'de> for EndpointHealthEntry
impl<'de> Deserialize<'de> for EndpointHealthEntry
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 EndpointHealthEntry
impl RefUnwindSafe for EndpointHealthEntry
impl Send for EndpointHealthEntry
impl Sync for EndpointHealthEntry
impl Unpin for EndpointHealthEntry
impl UnwindSafe for EndpointHealthEntry
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