struct EpiStatMap {
data: [Grid<i32>; 3],
susceptible_query: Query<With<&'static Coord, CsfSusceptible>>,
infected_query: Query<With<&'static Coord, CsfInfected>>,
resistant_query: Query<With<&'static Coord, CsfResistant>>,
}
Fields
data: [Grid<i32>; 3]
susceptible_query: Query<With<&'static Coord, CsfSusceptible>>
infected_query: Query<With<&'static Coord, CsfInfected>>
resistant_query: Query<With<&'static Coord, CsfResistant>>
Trait Implementations
sourceimpl Default for EpiStatMap
impl Default for EpiStatMap
sourcefn default() -> EpiStatMap
fn default() -> EpiStatMap
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for EpiStatMap
impl Send for EpiStatMap
impl !Sync for EpiStatMap
impl Unpin for EpiStatMap
impl UnwindSafe for EpiStatMap
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more