pub struct AppliedMoveTelemetry {
pub step_index: u64,
pub move_label: &'static str,
pub selected_candidate_index: usize,
pub moves_generated_this_step: u64,
pub moves_evaluated_this_step: u64,
pub moves_accepted_this_step: u64,
pub moves_forager_ignored_this_step: u64,
pub score_before: f64,
pub score_after: f64,
pub score_delta: f64,
pub hard_feasible_before: bool,
pub hard_feasible_after: bool,
}Fields§
§step_index: u64§move_label: &'static str§selected_candidate_index: usize§moves_generated_this_step: u64§moves_evaluated_this_step: u64§moves_accepted_this_step: u64§moves_forager_ignored_this_step: u64§score_before: f64§score_after: f64§score_delta: f64§hard_feasible_before: bool§hard_feasible_after: boolTrait Implementations§
Source§impl Clone for AppliedMoveTelemetry
impl Clone for AppliedMoveTelemetry
Source§fn clone(&self) -> AppliedMoveTelemetry
fn clone(&self) -> AppliedMoveTelemetry
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 AppliedMoveTelemetry
impl Debug for AppliedMoveTelemetry
Source§impl Default for AppliedMoveTelemetry
impl Default for AppliedMoveTelemetry
Source§fn default() -> AppliedMoveTelemetry
fn default() -> AppliedMoveTelemetry
Returns the “default value” for a type. Read more
Source§impl PartialEq for AppliedMoveTelemetry
impl PartialEq for AppliedMoveTelemetry
Source§fn eq(&self, other: &AppliedMoveTelemetry) -> bool
fn eq(&self, other: &AppliedMoveTelemetry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AppliedMoveTelemetry
impl StructuralPartialEq for AppliedMoveTelemetry
Auto Trait Implementations§
impl Freeze for AppliedMoveTelemetry
impl RefUnwindSafe for AppliedMoveTelemetry
impl Send for AppliedMoveTelemetry
impl Sync for AppliedMoveTelemetry
impl Unpin for AppliedMoveTelemetry
impl UnsafeUnpin for AppliedMoveTelemetry
impl UnwindSafe for AppliedMoveTelemetry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more