Struct EpisodeLengthMetric
pub struct EpisodeLengthMetric { /* private fields */ }Expand description
Metric for the length of the last completed episode.
Implementations§
§impl EpisodeLengthMetric
impl EpisodeLengthMetric
pub fn new() -> EpisodeLengthMetric
pub fn new() -> EpisodeLengthMetric
Creates a new episode length metric.
Trait Implementations§
§impl Clone for EpisodeLengthMetric
impl Clone for EpisodeLengthMetric
§fn clone(&self) -> EpisodeLengthMetric
fn clone(&self) -> EpisodeLengthMetric
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Default for EpisodeLengthMetric
impl Default for EpisodeLengthMetric
§fn default() -> EpisodeLengthMetric
fn default() -> EpisodeLengthMetric
Returns the “default value” for a type. Read more
§impl Metric for EpisodeLengthMetric
impl Metric for EpisodeLengthMetric
§type Input = EpisodeLengthInput
type Input = EpisodeLengthInput
The input type of the metric.
§fn update(
&mut self,
item: &EpisodeLengthInput,
_metadata: &MetricMetadata,
) -> SerializedEntry
fn update( &mut self, item: &EpisodeLengthInput, _metadata: &MetricMetadata, ) -> SerializedEntry
Update the metric state and returns the current metric entry.
§fn attributes(&self) -> MetricAttributes
fn attributes(&self) -> MetricAttributes
Attributes of the metric. Read more
§fn description(&self) -> Option<String>
fn description(&self) -> Option<String>
A short description of the metric.
§impl Numeric for EpisodeLengthMetric
impl Numeric for EpisodeLengthMetric
§fn value(&self) -> NumericEntry
fn value(&self) -> NumericEntry
Returns the numeric value of the metric.
§fn running_value(&self) -> NumericEntry
fn running_value(&self) -> NumericEntry
Returns the current aggregated value of the metric over the global step (epoch).
Auto Trait Implementations§
impl Freeze for EpisodeLengthMetric
impl RefUnwindSafe for EpisodeLengthMetric
impl Send for EpisodeLengthMetric
impl Sync for EpisodeLengthMetric
impl Unpin for EpisodeLengthMetric
impl UnwindSafe for EpisodeLengthMetric
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
§impl<C> CloneExpand for Cwhere
C: Clone,
impl<C> CloneExpand for Cwhere
C: Clone,
fn __expand_clone_method(&self, _scope: &mut Scope) -> C
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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