Skip to main content

GenerationView

Struct GenerationView 

Source
pub struct GenerationView<'a, C, T>
where C: Chromosome,
{ /* private fields */ }

Implementations§

Source§

impl<'a, C, T> GenerationView<'a, C, T>
where C: Chromosome,

Source

pub fn new(context: &'a EvolutionContext<C, T>) -> Self

Source

pub fn score(&self) -> &Score

Source

pub fn front(&self) -> Arc<Front<Phenotype<C>>>
where C: Clone,

Source

pub fn value(&self) -> &T

Source

pub fn phenotype(&self) -> &Phenotype<C>

Source

pub fn index(&self) -> usize

Source

pub fn metrics(&self) -> &MetricSet

Source

pub fn objective(&self) -> &Objective

Source

pub fn ecosystem(&self) -> &Ecosystem<C>

Source

pub fn population(&self) -> &Population<C>

Source

pub fn species(&self) -> Option<&[Species<C>]>

Source

pub fn time(&self) -> Duration

Source

pub fn seconds(&self) -> f64

Trait Implementations§

Source§

impl<'a, C, T> From<&'a EvolutionContext<C, T>> for GenerationView<'a, C, T>
where C: Chromosome,

Source§

fn from(ctx: &'a EvolutionContext<C, T>) -> Self

Converts to this type from the input type.
Source§

impl<'a, C, T> From<&'a Generation<C, T>> for GenerationView<'a, C, T>
where C: Chromosome,

Source§

fn from(epoch: &'a Generation<C, T>) -> Self

Converts to this type from the input type.
Source§

impl<'a, C, T> From<GenerationView<'a, C, T>> for Generation<C, T>
where C: Chromosome + Clone, T: Clone,

Source§

fn from(val: GenerationView<'a, C, T>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<'a, C, T> !RefUnwindSafe for GenerationView<'a, C, T>

§

impl<'a, C, T> !UnwindSafe for GenerationView<'a, C, T>

§

impl<'a, C, T> Freeze for GenerationView<'a, C, T>
where ViewInner<'a, C, T>: Freeze,

§

impl<'a, C, T> Send for GenerationView<'a, C, T>
where ViewInner<'a, C, T>: Send,

§

impl<'a, C, T> Sync for GenerationView<'a, C, T>
where ViewInner<'a, C, T>: Sync,

§

impl<'a, C, T> Unpin for GenerationView<'a, C, T>
where ViewInner<'a, C, T>: Unpin,

§

impl<'a, C, T> UnsafeUnpin for GenerationView<'a, C, T>
where ViewInner<'a, C, T>: UnsafeUnpin,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Event for T
where T: Send + Sync + 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more