pub struct AdminTargetStats {
pub target: TargetTriple,
pub completed_24h: u32,
pub failed_24h: u32,
pub partial_24h: u32,
}Expand description
Per-target completion tallies over the trailing 24 hours.
Fields§
§target: TargetTripleCompilation target.
completed_24h: u32Rows that completed in the window.
failed_24h: u32Rows that failed in the window.
partial_24h: u32Rows that stopped early in the window but registered what they produced. Absent from responses written before the field existed.
Trait Implementations§
Source§impl Clone for AdminTargetStats
impl Clone for AdminTargetStats
Source§impl ComposeSchema for AdminTargetStats
impl ComposeSchema for AdminTargetStats
Source§impl Debug for AdminTargetStats
impl Debug for AdminTargetStats
Source§impl<'de> Deserialize<'de> for AdminTargetStats
impl<'de> Deserialize<'de> for AdminTargetStats
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 AdminTargetStats
Source§impl PartialEq for AdminTargetStats
impl PartialEq for AdminTargetStats
Source§impl Serialize for AdminTargetStats
impl Serialize for AdminTargetStats
impl StructuralPartialEq for AdminTargetStats
Auto Trait Implementations§
impl Freeze for AdminTargetStats
impl RefUnwindSafe for AdminTargetStats
impl Send for AdminTargetStats
impl Sync for AdminTargetStats
impl Unpin for AdminTargetStats
impl UnsafeUnpin for AdminTargetStats
impl UnwindSafe for AdminTargetStats
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.