pub struct TeamMetrics {
pub team: EntityTeam,
pub sampled_ticks: u64,
pub idle_share_pct: f64,
pub body_busy_share_pct: f64,
pub whiffs: u64,
pub hits_while_casting: u64,
pub max_window_idle_share_pct: Option<f64>,
pub dispersion_ok: bool,
}Expand description
Per-team aggregate.
Fields§
§team: EntityTeam§sampled_ticks: u64§whiffs: u64§hits_while_casting: u64§dispersion_ok: boolTrait Implementations§
Source§impl Clone for TeamMetrics
impl Clone for TeamMetrics
Source§fn clone(&self) -> TeamMetrics
fn clone(&self) -> TeamMetrics
Returns a copy 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 TeamMetrics
impl Debug for TeamMetrics
Auto Trait Implementations§
impl Freeze for TeamMetrics
impl RefUnwindSafe for TeamMetrics
impl Send for TeamMetrics
impl Sync for TeamMetrics
impl Unpin for TeamMetrics
impl UnwindSafe for TeamMetrics
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