pub struct AdminOverview {
pub snapshots_by_lifecycle: BTreeMap<String, u64>,
pub snapshots_by_owner: BTreeMap<String, u64>,
pub ephemeral_snapshots: u64,
pub runs_by_state: BTreeMap<String, u64>,
pub case_runs_by_state: BTreeMap<String, u64>,
pub analysis_tasks_by_state: BTreeMap<String, u64>,
pub bindings: u64,
pub judge_models: u64,
pub gate_approved_judge_models: u64,
}Expand description
Aggregate counts for the landing screen. Keyed by the enum’s wire name so a new state shows up without a schema change on the console side.
Fields§
§snapshots_by_lifecycle: BTreeMap<String, u64>§snapshots_by_owner: BTreeMap<String, u64>§ephemeral_snapshots: u64§runs_by_state: BTreeMap<String, u64>§case_runs_by_state: BTreeMap<String, u64>§analysis_tasks_by_state: BTreeMap<String, u64>§bindings: u64§judge_models: u64§gate_approved_judge_models: u64Trait Implementations§
Source§impl Clone for AdminOverview
impl Clone for AdminOverview
Source§fn clone(&self) -> AdminOverview
fn clone(&self) -> AdminOverview
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 AdminOverview
impl Debug for AdminOverview
Source§impl Default for AdminOverview
impl Default for AdminOverview
Source§fn default() -> AdminOverview
fn default() -> AdminOverview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdminOverview
impl<'de> Deserialize<'de> for AdminOverview
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 AdminOverview
Source§impl PartialEq for AdminOverview
impl PartialEq for AdminOverview
Source§impl Serialize for AdminOverview
impl Serialize for AdminOverview
impl StructuralPartialEq for AdminOverview
Auto Trait Implementations§
impl Freeze for AdminOverview
impl RefUnwindSafe for AdminOverview
impl Send for AdminOverview
impl Sync for AdminOverview
impl Unpin for AdminOverview
impl UnsafeUnpin for AdminOverview
impl UnwindSafe for AdminOverview
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