struct SecondaryInfections {
infections: HashMap<Entity, (u16, u16, u16)>,
carcasses: HashMap<Entity, Entity>,
query: Query<(&'static Coord, Matches<&'static AsfInfectiousCarcass>)>,
data: Grid<i32>,
}
Fields
infections: HashMap<Entity, (u16, u16, u16)>
carcasses: HashMap<Entity, Entity>
query: Query<(&'static Coord, Matches<&'static AsfInfectiousCarcass>)>
data: Grid<i32>
Trait Implementations
sourceimpl Default for SecondaryInfections
impl Default for SecondaryInfections
sourcefn default() -> SecondaryInfections
fn default() -> SecondaryInfections
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for SecondaryInfections
impl Send for SecondaryInfections
impl !Sync for SecondaryInfections
impl Unpin for SecondaryInfections
impl UnwindSafe for SecondaryInfections
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