rustics::running_integer

Struct RunningInteger

source
pub struct RunningInteger {
    pub log_histogram: LogHistogram,
    /* private fields */
}

Fields§

§log_histogram: LogHistogram

Implementations§

source§

impl RunningInteger

source

pub fn new(name_in: &str, printer: PrinterOption) -> RunningInteger

source

pub fn new_from_exporter( name: &str, title: &str, printer: PrinterOption, import: RunningExport, ) -> RunningInteger

source

pub fn export(&self) -> RunningExport

Trait Implementations§

source§

impl Clone for RunningInteger

source§

fn clone(&self) -> RunningInteger

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl HierMember for RunningInteger

source§

fn to_rustics(&self) -> &dyn Rustics

source§

fn to_rustics_mut(&mut self) -> &mut dyn Rustics

source§

fn as_any(&self) -> &dyn Any

source§

fn as_any_mut(&mut self) -> &mut dyn Any

source§

impl Histogram for RunningInteger

source§

fn log_histogram(&self) -> LogHistogram

source§

fn print_histogram(&self, printer: &mut dyn Printer)

source§

impl Rustics for RunningInteger

source§

fn record_i64(&mut self, sample: i64)

source§

fn record_f64(&mut self, _sample: f64)

source§

fn record_event(&mut self)

source§

fn record_time(&mut self, _sample: i64)

source§

fn record_interval(&mut self, _timer: &mut TimerBox)

source§

fn name(&self) -> String

source§

fn title(&self) -> String

source§

fn class(&self) -> &str

source§

fn count(&self) -> u64

source§

fn log_mode(&self) -> isize

source§

fn mean(&self) -> f64

source§

fn standard_deviation(&self) -> f64

source§

fn variance(&self) -> f64

source§

fn skewness(&self) -> f64

source§

fn kurtosis(&self) -> f64

source§

fn precompute(&mut self)

source§

fn int_extremes(&self) -> bool

source§

fn min_i64(&self) -> i64

source§

fn max_i64(&self) -> i64

source§

fn min_f64(&self) -> f64

source§

fn max_f64(&self) -> f64

source§

fn clear(&mut self)

source§

fn equals(&self, other: &dyn Rustics) -> bool

source§

fn generic(&self) -> &dyn Any

source§

fn histo_log_mode(&self) -> i64

source§

fn print(&self)

source§

fn print_opts(&self, printer: PrinterOption, title: Option<&str>)

source§

fn set_title(&mut self, title: &str)

source§

fn set_id(&mut self, id: usize)

source§

fn id(&self) -> usize

Auto Trait Implementations§

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> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

source§

type Error = Infallible

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

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

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.