pub struct MoveTelemetry {Show 14 fields
pub move_label: String,
pub moves_generated: u64,
pub moves_evaluated: u64,
pub moves_accepted: u64,
pub moves_applied: u64,
pub moves_not_doable: u64,
pub moves_acceptor_rejected: u64,
pub moves_forager_ignored: u64,
pub moves_score_improving: u64,
pub moves_applied_improving: u64,
pub moves_score_equal: u64,
pub moves_score_worse: u64,
pub moves_rejected_improving: u64,
pub applied_score_improvement: f64,
}Fields§
§move_label: String§moves_generated: u64Candidate moves actually yielded to the engine across all phases. Exhaust a cursor or query selector sizing separately for logical size.
moves_evaluated: u64§moves_accepted: u64§moves_applied: u64§moves_not_doable: u64§moves_acceptor_rejected: u64§moves_forager_ignored: u64§moves_score_improving: u64§moves_applied_improving: u64§moves_score_equal: u64§moves_score_worse: u64§moves_rejected_improving: u64§applied_score_improvement: f64Trait Implementations§
Source§impl Clone for MoveTelemetry
impl Clone for MoveTelemetry
Source§fn clone(&self) -> MoveTelemetry
fn clone(&self) -> MoveTelemetry
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 MoveTelemetry
impl Debug for MoveTelemetry
Source§impl Default for MoveTelemetry
impl Default for MoveTelemetry
Source§fn default() -> MoveTelemetry
fn default() -> MoveTelemetry
Returns the “default value” for a type. Read more
Source§impl PartialEq for MoveTelemetry
impl PartialEq for MoveTelemetry
impl StructuralPartialEq for MoveTelemetry
Auto Trait Implementations§
impl Freeze for MoveTelemetry
impl RefUnwindSafe for MoveTelemetry
impl Send for MoveTelemetry
impl Sync for MoveTelemetry
impl Unpin for MoveTelemetry
impl UnsafeUnpin for MoveTelemetry
impl UnwindSafe for MoveTelemetry
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