[][src]Struct mop_solvers::genetic_algorithm::GeneticAlgorithmParamsBuilder

pub struct GeneticAlgorithmParamsBuilder<C, M, MS> { /* fields omitted */ }

Implementations

impl<C, M, MS> GeneticAlgorithmParamsBuilder<C, M, MS>[src]

pub fn build(self) -> Result<GeneticAlgorithmParams<C, M, MS>, Error>[src]

pub fn crossover(self, crossover: C) -> Self[src]

pub fn mating_selection(self, mating_selection: MS) -> Self[src]

pub fn mutation(self, mutation: M) -> Self[src]

Trait Implementations

impl<C: Debug, M: Debug, MS: Debug> Debug for GeneticAlgorithmParamsBuilder<C, M, MS>[src]

impl<C, M, MS> Default for GeneticAlgorithmParamsBuilder<C, M, MS>[src]

Auto Trait Implementations

impl<C, M, MS> RefUnwindSafe for GeneticAlgorithmParamsBuilder<C, M, MS> where
    C: RefUnwindSafe,
    M: RefUnwindSafe,
    MS: RefUnwindSafe

impl<C, M, MS> Send for GeneticAlgorithmParamsBuilder<C, M, MS> where
    C: Send,
    M: Send,
    MS: Send

impl<C, M, MS> Sync for GeneticAlgorithmParamsBuilder<C, M, MS> where
    C: Sync,
    M: Sync,
    MS: Sync

impl<C, M, MS> Unpin for GeneticAlgorithmParamsBuilder<C, M, MS> where
    C: Unpin,
    M: Unpin,
    MS: Unpin

impl<C, M, MS> UnwindSafe for GeneticAlgorithmParamsBuilder<C, M, MS> where
    C: UnwindSafe,
    M: UnwindSafe,
    MS: 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> TraitCfg for T[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>,