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