pub struct PipelineSearchResultMsg {
pub status: String,
pub best_breeds: Vec<String>,
pub best_fitness: f64,
pub generations_run: usize,
pub evaluations: usize,
pub summary: String,
}Expand description
Result of max/pipelineSearch.
Fields§
§status: StringBounded status string (ADMITTED, PARTIAL, UNKNOWN, REFUSED, …).
best_breeds: Vec<String>Identifiers of the fittest breeds observed, best first.
best_fitness: f64Fitness of the best observed breed.
generations_run: usizeGenerations actually evolved.
evaluations: usizeTotal breed evaluations performed.
summary: StringHuman-readable summary of the search outcome.
Trait Implementations§
Source§impl Clone for PipelineSearchResultMsg
impl Clone for PipelineSearchResultMsg
Source§fn clone(&self) -> PipelineSearchResultMsg
fn clone(&self) -> PipelineSearchResultMsg
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PipelineSearchResultMsg
impl Debug for PipelineSearchResultMsg
Source§impl<'de> Deserialize<'de> for PipelineSearchResultMsg
impl<'de> Deserialize<'de> for PipelineSearchResultMsg
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PipelineSearchResultMsg
impl RefUnwindSafe for PipelineSearchResultMsg
impl Send for PipelineSearchResultMsg
impl Sync for PipelineSearchResultMsg
impl Unpin for PipelineSearchResultMsg
impl UnsafeUnpin for PipelineSearchResultMsg
impl UnwindSafe for PipelineSearchResultMsg
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more