[][src]Struct core_extensions::measure_time::MyDuration

pub struct MyDuration(pub Duration);

Wrapper type for ::std::time::Duration which is specialized for measuring code execution time.

This type implements the Units trait,used for displaying types with many units.

Methods

impl MyDuration[src]

pub fn from_hours(hours: u64) -> Self[src]

Creates a MyDuration from hours hours.

pub fn from_minutes(minutes: u64) -> Self[src]

Creates a MyDuration from minutes minutes.

pub fn from_seconds(seconds: u64) -> Self[src]

Creates a MyDuration from seconds seconds.

pub fn from_mili(miliseconds: u64) -> Self[src]

Creates a MyDuration from miliseconds miliseconds.

pub fn from_micro(microseconds: u64) -> Self[src]

Creates a MyDuration from microseconds microseconds.

pub fn from_nano(nanoseconds: u64) -> Self[src]

Creates a MyDuration from nanoseconds nanoseconds.

pub fn nanoseconds(self) -> u64[src]

How many nanoseconds this is.

pub fn microseconds(self) -> u64[src]

How many microseconds this is.

pub fn miliseconds(self) -> u64[src]

How many miliseconds this is.

pub fn seconds(self) -> u64[src]

How many seconds this is.

pub fn minutes(self) -> u64[src]

How many minutes this is.

pub fn hours(self) -> u64[src]

How many hours this is.

pub fn map<F>(self, f: F) -> Self where
    F: FnOnce(Duration) -> Duration
[src]

Maps the underlying Duration.

Methods from Deref<Target = Duration>

pub const SECOND: Duration[src]

pub const MILLISECOND: Duration[src]

pub const MICROSECOND: Duration[src]

pub const NANOSECOND: Duration[src]

pub const fn as_secs(&self) -> u641.3.0[src]

Returns the number of whole seconds contained by this Duration.

The returned value does not include the fractional (nanosecond) part of the duration, which can be obtained using subsec_nanos.

Examples

use std::time::Duration;

let duration = Duration::new(5, 730023852);
assert_eq!(duration.as_secs(), 5);

To determine the total number of seconds represented by the Duration, use as_secs in combination with subsec_nanos:

use std::time::Duration;

let duration = Duration::new(5, 730023852);

assert_eq!(5.730023852,
           duration.as_secs() as f64
           + duration.subsec_nanos() as f64 * 1e-9);

pub const fn subsec_millis(&self) -> u321.27.0[src]

Returns the fractional part of this Duration, in whole milliseconds.

This method does not return the length of the duration when represented by milliseconds. The returned number always represents a fractional portion of a second (i.e., it is less than one thousand).

Examples

use std::time::Duration;

let duration = Duration::from_millis(5432);
assert_eq!(duration.as_secs(), 5);
assert_eq!(duration.subsec_millis(), 432);

pub const fn subsec_micros(&self) -> u321.27.0[src]

Returns the fractional part of this Duration, in whole microseconds.

This method does not return the length of the duration when represented by microseconds. The returned number always represents a fractional portion of a second (i.e., it is less than one million).

Examples

use std::time::Duration;

let duration = Duration::from_micros(1_234_567);
assert_eq!(duration.as_secs(), 1);
assert_eq!(duration.subsec_micros(), 234_567);

pub const fn subsec_nanos(&self) -> u321.3.0[src]

Returns the fractional part of this Duration, in nanoseconds.

This method does not return the length of the duration when represented by nanoseconds. The returned number always represents a fractional portion of a second (i.e., it is less than one billion).

Examples

use std::time::Duration;

let duration = Duration::from_millis(5010);
assert_eq!(duration.as_secs(), 5);
assert_eq!(duration.subsec_nanos(), 10_000_000);

pub const fn as_millis(&self) -> u1281.33.0[src]

Returns the total number of whole milliseconds contained by this Duration.

Examples

use std::time::Duration;

let duration = Duration::new(5, 730023852);
assert_eq!(duration.as_millis(), 5730);

pub const fn as_micros(&self) -> u1281.33.0[src]

Returns the total number of whole microseconds contained by this Duration.

Examples

use std::time::Duration;

let duration = Duration::new(5, 730023852);
assert_eq!(duration.as_micros(), 5730023);

pub const fn as_nanos(&self) -> u1281.33.0[src]

Returns the total number of nanoseconds contained by this Duration.

Examples

use std::time::Duration;

let duration = Duration::new(5, 730023852);
assert_eq!(duration.as_nanos(), 5730023852);

pub fn as_secs_f64(&self) -> f641.38.0[src]

Returns the number of seconds contained by this Duration as f64.

The returned value does include the fractional (nanosecond) part of the duration.

Examples

use std::time::Duration;

let dur = Duration::new(2, 700_000_000);
assert_eq!(dur.as_secs_f64(), 2.7);

pub fn as_secs_f32(&self) -> f321.38.0[src]

Returns the number of seconds contained by this Duration as f32.

The returned value does include the fractional (nanosecond) part of the duration.

Examples

use std::time::Duration;

let dur = Duration::new(2, 700_000_000);
assert_eq!(dur.as_secs_f32(), 2.7);

Trait Implementations

impl Deref for MyDuration[src]

type Target = Duration

The resulting type after dereferencing.

impl DerefMut for MyDuration[src]

impl From<Duration> for MyDuration[src]

impl From<MyDuration> for Duration[src]

impl Debug for MyDuration[src]

impl Display for MyDuration[src]

impl PartialEq<MyDuration> for MyDuration[src]

impl Eq for MyDuration[src]

impl Ord for MyDuration[src]

impl PartialOrd<MyDuration> for MyDuration[src]

impl Hash for MyDuration[src]

impl Copy for MyDuration[src]

impl StructuralPartialEq for MyDuration[src]

impl StructuralEq for MyDuration[src]

impl Clone for MyDuration[src]

impl Default for MyDuration[src]

impl Serialize for MyDuration[src]

This impl is only enabled if the "serde_" feature is enabled.

impl<'de> Deserialize<'de> for MyDuration[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The error type returned when the conversion fails.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]