[][src]Struct oxigen::IndWithFitness

pub struct IndWithFitness<T: PartialEq + Send + Sync, Ind: Genotype<T>> {
    pub ind: Ind,
    pub fitness: Option<Fitness>,
    // some fields omitted
}

Struct that defines a pair of individual-fitness

Fields

ind: Ind

Individual

fitness: Option<Fitness>

Fitness (can be not computed yet)

Methods

impl<T: PartialEq + Send + Sync, Ind: Genotype<T>> IndWithFitness<T, Ind>[src]

pub fn new(ind: Ind, fitness: Option<Fitness>) -> IndWithFitness<T, Ind>[src]

Trait Implementations

impl<T: Debug + PartialEq + Send + Sync, Ind: Debug + Genotype<T>> Debug for IndWithFitness<T, Ind>[src]

impl<T: PartialEq + Send + Sync, Ind: Genotype<T>> Display for IndWithFitness<T, Ind>[src]

Auto Trait Implementations

impl<T, Ind> RefUnwindSafe for IndWithFitness<T, Ind> where
    Ind: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, Ind> Send for IndWithFitness<T, Ind>

impl<T, Ind> Sync for IndWithFitness<T, Ind>

impl<T, Ind> Unpin for IndWithFitness<T, Ind> where
    Ind: Unpin,
    T: Unpin

impl<T, Ind> UnwindSafe for IndWithFitness<T, Ind> where
    Ind: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,