struct FemaleDispersalKernel {
missing_prev_coord_query: Query<Without<With<(&'static Entity, &'static Coord), Female>, PrevCoord>>,
missing_prev_coord: Vec<(Entity, Coord)>,
coord_query: Query<With<(&'static mut PrevCoord, &'static Coord), Female>>,
yearly: bool,
counts: Grid<i32>,
}
Fields
missing_prev_coord_query: Query<Without<With<(&'static Entity, &'static Coord), Female>, PrevCoord>>
missing_prev_coord: Vec<(Entity, Coord)>
coord_query: Query<With<(&'static mut PrevCoord, &'static Coord), Female>>
yearly: bool
counts: Grid<i32>
Trait Implementations
sourceimpl Default for FemaleDispersalKernel
impl Default for FemaleDispersalKernel
sourcefn default() -> FemaleDispersalKernel
fn default() -> FemaleDispersalKernel
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for FemaleDispersalKernel
impl Send for FemaleDispersalKernel
impl !Sync for FemaleDispersalKernel
impl Unpin for FemaleDispersalKernel
impl UnwindSafe for FemaleDispersalKernel
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