struct DefaultFemaleDispersal {
Show 14 fields params: DispersalParams, min_dispersal_group: usize, movements: Grid<Movement>, dispersers: Grid<Vec<Entity>>, blocked: Grid<bool>, count_females: Grid<u16>, flood_fill: FloodFill, query: Query<With<(&'static Age, &'static Coord), Female>>, non_breeder_query: Query<Without<With<(&'static Entity, &'static Age, &'static Coord), Female>, Breeder>>, coord_query: Query<&'static mut Coord>, habitat_quality_query: Query<(&'static BreedingCapacity, Matches<&'static Impassable>)>, perm_query: Query<&'static Permeability>, disperser_query: Query<(&'static Entity, &'static FemaleDisperser)>, dispersed: Vec<Entity>,
}

Fields

params: DispersalParamsmin_dispersal_group: usizemovements: Grid<Movement>dispersers: Grid<Vec<Entity>>blocked: Grid<bool>count_females: Grid<u16>flood_fill: FloodFillquery: Query<With<(&'static Age, &'static Coord), Female>>non_breeder_query: Query<Without<With<(&'static Entity, &'static Age, &'static Coord), Female>, Breeder>>coord_query: Query<&'static mut Coord>habitat_quality_query: Query<(&'static BreedingCapacity, Matches<&'static Impassable>)>perm_query: Query<&'static Permeability>disperser_query: Query<(&'static Entity, &'static FemaleDisperser)>dispersed: Vec<Entity>

Implementations

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.