pub struct StoreInfectionLocation {
location_query: Query<&'static Coord>,
query: Query<&'static mut AsfInfectionLocation>,
to_insert: Vec<(Entity, AsfInfectionLocation)>,
}
Fields
location_query: Query<&'static Coord>
query: Query<&'static mut AsfInfectionLocation>
to_insert: Vec<(Entity, AsfInfectionLocation)>
Trait Implementations
sourceimpl Default for StoreInfectionLocation
impl Default for StoreInfectionLocation
sourcefn default() -> StoreInfectionLocation
fn default() -> StoreInfectionLocation
Returns the “default value” for a type. Read more
sourceimpl System for StoreInfectionLocation
impl System for StoreInfectionLocation
fn update(&mut self, world: &mut World, resources: &mut Resources)
fn initialize(&mut self, _world: &mut World, _resources: &mut Resources)
fn finalize(&mut self, _world: &mut World, _resources: &mut Resources)
fn init_boars(
&self,
_world: &mut World,
_resources: &mut Resources,
_boars: &[Entity]
)
Auto Trait Implementations
impl RefUnwindSafe for StoreInfectionLocation
impl Send for StoreInfectionLocation
impl !Sync for StoreInfectionLocation
impl Unpin for StoreInfectionLocation
impl UnwindSafe for StoreInfectionLocation
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