Struct Instant

Source
pub struct Instant(/* private fields */);
Expand description

A measurement of a monotonically nondecreasing clock. Opaque and useful only with Duration.

Instants are guaranteed to be no less than any previously measured instant when created, and are often useful for tasks such as measuring benchmarks or timing how long an operation takes.

Note, however, that instants are not guaranteed to be steady. In other words, each tick of the underlying clock might not be the same length (e.g. some seconds may be longer than others). An instant may jump forwards or experience time dilation (slow down or speed up), but it will never go backwards.

Instants should generally be condsidered as opaque types that can only be compared to one another. Though there is a method to get “the number of seconds” from an instant it is implementation dependent and should be used with knowledge of how this particular Instant was constructed. Instead, prefer using other operations, such as measuring the duration between two instants, comparing two instants, adding and subtracting Duration.

This struct is almost identical to std::time::Instant but provides some additional saturating methods. And it can also be constructed with fiber::clock, in which case it behaves in a tarantool specific way.

Implementations§

Source§

impl Instant

Source

pub fn now() -> Self

👎Deprecated: use now_fiber or now_accurate instead

Equivalent to Self::now_accurate.

Source

pub fn now_accurate() -> Self

Returns an instant corresponding to “now”. Uses monotonic clock.

Use this function when duration accuracy is required, for example when timing the execution of different parts of your program (benchmarking).

If you need to compute timeouts for yielding operations you should use Self::now_fiber instead.

§Examples
use tarantool::time::Instant;

let start = Instant::now_accurate();
expensive_computation();
println!("expensive_computation took {:?}", start.elapsed());
Source

pub fn now_fiber() -> Self

Returns an instant corresponding to event loop iteration begin time. Uses monotonic clock.

Use this function when computing timeouts for tasks which may result in fiber yields. It is important that this function is used, because the tarantool uses this value for it’s internal event loop timers, and using Self::now_accurate may result in unexpected results.

If instead you’re timing how long things execute, use Self::now_accurate.

§Examples
use tarantool::time::Instant;
use std::time::Duration;

let timeout = Duration::from_secs(3);
let deadline = Instant::now_fiber().saturating_add(timeout);
while Instant::now_fiber() < deadline {
    do_some_yielding_task();
}
Source

pub fn elapsed(&self) -> Duration

Returns the amount of time elapsed since this instant was created.

Uses Self::now_accurate to determine the instant of “now”.

§Examples
use std::time::Duration;
use tarantool::time::Instant;
use tarantool::fiber;

let instant = Instant::now_accurate();
let three_secs = Duration::from_secs(3);
fiber::sleep(three_secs);
assert!(instant.elapsed() >= three_secs);
Source

pub fn checked_add(&self, duration: Duration) -> Option<Instant>

Returns Some(t) where t is the time self + duration if t can be represented as Instant (which means it’s inside the bounds of the underlying representation), None otherwise.

Source

pub fn checked_sub(&self, duration: Duration) -> Option<Instant>

Returns Some(t) where t is the time self - duration if t can be represented as Instant (which means it’s inside the bounds of the underlying representation), None otherwise.

Source

pub fn saturating_add(&self, duration: Duration) -> Instant

Saturating addition. Computes self + duration, returning maximal possible instant (allowed by the underlying representaion) if overflow occurred.

Source

pub fn saturating_sub(&self, duration: Duration) -> Instant

Saturating subtraction. Computes self - duration, returning minimal possible instant (allowed by the underlying representaion) if overflow occurred.

Source

pub fn checked_duration_since(&self, earlier: Instant) -> Option<Duration>

Returns the amount of time elapsed from another instant to this one, or None if that instant is later than this one.

§Examples
use std::time::Duration;
use std::thread::sleep;
use tarantool::time::Instant;

let now = Instant::now();
sleep(Duration::new(1, 0));
let new_now = Instant::now();
println!("{:?}", new_now.checked_duration_since(now));
println!("{:?}", now.checked_duration_since(new_now)); // None
Source

pub fn duration_since(&self, earlier: Instant) -> Duration

Returns the amount of time elapsed from another instant to this one, or zero duration if that instant is later than this one.

§Examples
use std::time::Duration;
use std::thread::sleep;
use tarantool::time::Instant;

let now = Instant::now();
sleep(Duration::new(1, 0));
let new_now = Instant::now();
println!("{:?}", new_now.duration_since(now));
println!("{:?}", now.duration_since(new_now)); // 0ns
Source

pub fn as_secs(&self) -> u64

Get the inner representation of an Instant.

§Warning

The inner representation of an instant is implementation dependent and should be used with knowledge of how this particular Instant was constructed.

If possible prefer working with Instant and Duration directly without getting its inner representation.

Source

pub fn as_secs_f64(&self) -> f64

Get the inner representation of an Instant.

§Warning

The inner representation of an instant is implementation dependent and should be used with knowledge of how this particular Instant was constructed.

If possible prefer working with Instant and Duration directly without getting its inner representation.

Source

pub fn as_secs_f32(&self) -> f32

Get the inner representation of an Instant.

§Warning

The inner representation of an instant is implementation dependent and should be used with knowledge of how this particular Instant was constructed.

If possible prefer working with Instant and Duration directly without getting its inner representation.

Trait Implementations§

Source§

impl Add<Duration> for Instant

Source§

fn add(self, other: Duration) -> Instant

§Panics

This function may panic if the resulting point in time cannot be represented by the underlying data structure. See Instant::checked_add for a version without panic.

Source§

type Output = Instant

The resulting type after applying the + operator.
Source§

impl AddAssign<Duration> for Instant

Source§

fn add_assign(&mut self, other: Duration)

Performs the += operation. Read more
Source§

impl Clone for Instant

Source§

fn clone(&self) -> Instant

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 Debug for Instant

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for Instant

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for Instant

Source§

fn cmp(&self, other: &Instant) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Instant

Source§

fn eq(&self, other: &Instant) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Instant

Source§

fn partial_cmp(&self, other: &Instant) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Sub<Duration> for Instant

Source§

type Output = Instant

The resulting type after applying the - operator.
Source§

fn sub(self, other: Duration) -> Instant

Performs the - operation. Read more
Source§

impl Sub for Instant

Source§

fn sub(self, other: Instant) -> Duration

Returns the amount of time elapsed from another instant to this one, or zero duration if that instant is later than this one.

Source§

type Output = Duration

The resulting type after applying the - operator.
Source§

impl SubAssign<Duration> for Instant

Source§

fn sub_assign(&mut self, other: Duration)

Performs the -= operation. Read more
Source§

impl Copy for Instant

Source§

impl Eq for Instant

Source§

impl StructuralPartialEq for Instant

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> IntoClones<(T,)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T, T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T, T, T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T, T, T, T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T, T, T, T, T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T, T, T, T, T, T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T, T, T, T, T, T, T, T)> for T
where T: Clone,

Source§

impl<T> IntoClones<(T, T, T, T, T, T, T, T, T, T, T)> for T
where T: Clone,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.