pub trait SpeciationProbability<M: MathsCore, H: Habitat<M>>: Backup + Debug {
    // Provided method
    fn get_speciation_probability_at_location(
        &self,
        location: &Location,
        habitat: &H
    ) -> ClosedUnitF64 { ... }
}

Provided Methods§

source

fn get_speciation_probability_at_location( &self, location: &Location, habitat: &H ) -> ClosedUnitF64

§Contracts

Pre-condition - debug: location is habitable

  • habitat.is_location_habitable(location)

Object Safety§

This trait is not object safe.

Implementors§