pub struct TimeDelta { /* private fields */ }
Expand description
Implementations§
Source§impl TimeDelta
§Basic methods
impl TimeDelta
§Basic methods
Sourcepub const fn new(secs: i64, nanos: i32) -> TimeDelta
pub const fn new(secs: i64, nanos: i32) -> TimeDelta
Creates a new TimeDelta
from the given number of whole seconds and additional nanoseconds.
If the absolute value of the nanoseconds is greater than or equal to 1 second, then the excess balances into the number of whole seconds.
§Panics
When the absolute value of the nanoseconds is greater than or equal
to 1 second and the excess that carries over to the number of whole
seconds overflows i64
.
This never panics when nanos
is less than 1_000_000_000
.
Sourcepub const fn from_secs(secs: i64) -> TimeDelta
pub const fn from_secs(secs: i64) -> TimeDelta
Creates a new TimeDelta
from the given number of whole seconds.
Sourcepub const fn from_millis(millis: i64) -> TimeDelta
pub const fn from_millis(millis: i64) -> TimeDelta
Creates a new TimeDelta
from the given number of whole milliseconds.
Note that since this accepts an i64
, this method cannot be used
to construct the full range of possible signed duration values. In
particular, TimeDelta::as_millis
returns an i128
, and this
may be a value that would otherwise overflow an i64
.
Sourcepub const fn from_micros(micros: i64) -> TimeDelta
pub const fn from_micros(micros: i64) -> TimeDelta
Creates a new TimeDelta
from the given number of whole microseconds.
Note that since this accepts an i64
, this method cannot be used
to construct the full range of possible signed duration values. In
particular, TimeDelta::as_micros
returns an i128
, and this
may be a value that would otherwise overflow an i64
.
Sourcepub const fn from_nanos(nanos: i64) -> TimeDelta
pub const fn from_nanos(nanos: i64) -> TimeDelta
Creates a new TimeDelta
from the given number of whole nanoseconds.
Note that since this accepts an i64
, this method cannot be used
to construct the full range of possible signed duration values. In
particular, TimeDelta::as_nanos
returns an i128
, which may
be a value that would otherwise overflow an i64
.
Sourcepub const fn from_hours(hours: i64) -> TimeDelta
pub const fn from_hours(hours: i64) -> TimeDelta
Creates a new TimeDelta
from the given number of hours.
Every hour is exactly 3,600
seconds.
§Panics
Panics if the number of hours, after being converted to nanoseconds,
overflows the minimum or maximum TimeDelta
values.
Sourcepub const fn from_mins(minutes: i64) -> TimeDelta
pub const fn from_mins(minutes: i64) -> TimeDelta
Creates a new TimeDelta
from the given number of minutes.
Every minute is exactly 60
seconds.
§Panics
Panics if the number of minutes, after being converted to nanoseconds,
overflows the minimum or maximum TimeDelta
values.
Sourcepub const fn as_secs(&self) -> i64 ⓘ
pub const fn as_secs(&self) -> i64 ⓘ
Returns the number of whole seconds in this duration.
The value returned is negative when the duration is negative.
This does not include any fractional component corresponding to units
less than a second. To access those, use one of the subsec
methods
such as TimeDelta::subsec_nanos
.
Sourcepub const fn subsec_millis(&self) -> i32
pub const fn subsec_millis(&self) -> i32
Returns the fractional part of this duration in whole milliseconds.
The value returned is negative when the duration is negative. It is
guaranteed that the range of the value returned is in the inclusive
range -999..=999
.
To get the length of the total duration represented in milliseconds,
use TimeDelta::as_millis
.
Sourcepub const fn subsec_micros(&self) -> i32
pub const fn subsec_micros(&self) -> i32
Returns the fractional part of this duration in whole microseconds.
The value returned is negative when the duration is negative. It is
guaranteed that the range of the value returned is in the inclusive
range -999_999..=999_999
.
To get the length of the total duration represented in microseconds,
use TimeDelta::as_micros
.
Sourcepub const fn subsec_nanos(&self) -> i32
pub const fn subsec_nanos(&self) -> i32
Returns the fractional part of this duration in whole nanoseconds.
The value returned is negative when the duration is negative. It is
guaranteed that the range of the value returned is in the inclusive
range -999_999_999..=999_999_999
.
To get the length of the total duration represented in nanoseconds,
use TimeDelta::as_nanos
.
Sourcepub const fn as_millis(&self) -> i128
pub const fn as_millis(&self) -> i128
Returns the total duration in units of whole milliseconds.
The value returned is negative when the duration is negative.
To get only the fractional component of this duration in units of
whole milliseconds, use TimeDelta::subsec_millis
.
Sourcepub const fn as_micros(&self) -> i128
pub const fn as_micros(&self) -> i128
Returns the total duration in units of whole microseconds.
The value returned is negative when the duration is negative.
To get only the fractional component of this duration in units of
whole microseconds, use TimeDelta::subsec_micros
.
Sourcepub const fn as_nanos(&self) -> i128
pub const fn as_nanos(&self) -> i128
Returns the total duration in units of whole nanoseconds.
The value returned is negative when the duration is negative.
To get only the fractional component of this duration in units of
whole nanoseconds, use TimeDelta::subsec_nanos
.
Source§impl TimeDelta
§Operations.
impl TimeDelta
§Operations.
Sourcepub const fn checked_add(self, rhs: TimeDelta) -> Option<TimeDelta> ⓘ
pub const fn checked_add(self, rhs: TimeDelta) -> Option<TimeDelta> ⓘ
Add two signed durations together. If overflow occurs, then None
is returned.
Sourcepub const fn saturating_add(self, rhs: TimeDelta) -> TimeDelta
pub const fn saturating_add(self, rhs: TimeDelta) -> TimeDelta
Add two signed durations together. If overflow occurs, then arithmetic saturates.
Sourcepub const fn checked_sub(self, rhs: TimeDelta) -> Option<TimeDelta> ⓘ
pub const fn checked_sub(self, rhs: TimeDelta) -> Option<TimeDelta> ⓘ
Subtract one signed duration from another. If overflow occurs, then None
is returned.
Sourcepub const fn saturating_sub(self, rhs: TimeDelta) -> TimeDelta
pub const fn saturating_sub(self, rhs: TimeDelta) -> TimeDelta
Add two signed durations together. If overflow occurs, then arithmetic saturates.
Source§impl TimeDelta
§Operations involving integers.
impl TimeDelta
§Operations involving integers.
Sourcepub const fn checked_mul(self, rhs: i32) -> Option<TimeDelta> ⓘ
pub const fn checked_mul(self, rhs: i32) -> Option<TimeDelta> ⓘ
Multiply this signed duration by an integer.
If the multiplication overflows, then None
is returned.
Sourcepub const fn saturating_mul(self, rhs: i32) -> TimeDelta
pub const fn saturating_mul(self, rhs: i32) -> TimeDelta
Multiply this signed duration by an integer.
If the multiplication overflows, then the result saturates to either the minimum or maximum duration depending on the sign of the product.
Source§impl TimeDelta
§Operations involving floating-point numbers.
impl TimeDelta
§Operations involving floating-point numbers.
Sourcepub fn as_secs_f64(&self) -> f64 ⓘ
pub fn as_secs_f64(&self) -> f64 ⓘ
Returns the number of seconds, with a possible fractional nanosecond component.
Sourcepub fn as_secs_f32(&self) -> f32
pub fn as_secs_f32(&self) -> f32
Returns the number of seconds, with a possible fractional nanosecond component.
Sourcepub fn as_millis_f64(&self) -> f64 ⓘ
pub fn as_millis_f64(&self) -> f64 ⓘ
Returns the number of milliseconds, with a possible fractional nanosecond component.
Sourcepub fn as_millis_f32(&self) -> f32
pub fn as_millis_f32(&self) -> f32
Returns the number of milliseconds, with a possible fractional nanosecond component.
Sourcepub fn from_secs_f64(secs: f64) -> TimeDelta
Available on crate features std
or _float_f64
only.
pub fn from_secs_f64(secs: f64) -> TimeDelta
std
or _float_f64
only.Returns a signed duration corresponding to the number of seconds.
The number given may have a fractional nanosecond component.
§Panics
Panics if the given float overflows the minimum or maximum signed duration values.
Sourcepub fn from_secs_f32(secs: f32) -> TimeDelta
Available on crate features std
or _float_f32
only.
pub fn from_secs_f32(secs: f32) -> TimeDelta
std
or _float_f32
only.Returns a signed duration corresponding to the number of seconds.
The number given may have a fractional nanosecond component.
§Panics
Panics if the given float overflows the minimum or maximum signed duration values.
Sourcepub fn try_from_secs_f64(secs: f64) -> Result<TimeDelta, &'static str> ⓘ
Available on crate features std
or _float_f64
only.
pub fn try_from_secs_f64(secs: f64) -> Result<TimeDelta, &'static str> ⓘ
std
or _float_f64
only.Returns a signed duration corresponding to the number of seconds.
The number given may have a fractional nanosecond component.
If the given float overflows the minimum or maximum signed duration values, then an error is returned.
Sourcepub fn try_from_secs_f32(secs: f32) -> Result<TimeDelta, &'static str> ⓘ
Available on crate features std
or _float_f32
only.
pub fn try_from_secs_f32(secs: f32) -> Result<TimeDelta, &'static str> ⓘ
std
or _float_f32
only.Returns a signed duration corresponding to the number of seconds.
The number given may have a fractional nanosecond component.
If the given float overflows the minimum or maximum signed duration values, then an error is returned.
Sourcepub fn mul_f64(self, rhs: f64) -> TimeDelta
Available on crate features std
or _float_f64
only.
pub fn mul_f64(self, rhs: f64) -> TimeDelta
std
or _float_f64
only.Returns the result of multiplying this duration by the given 64-bit float.
§Panics
This panics if the result is not finite or overflows a TimeDelta
.
Sourcepub fn mul_f32(self, rhs: f32) -> TimeDelta
Available on crate features std
or _float_f32
only.
pub fn mul_f32(self, rhs: f32) -> TimeDelta
std
or _float_f32
only.Returns the result of multiplying this duration by the given 32-bit float.
§Panics
This panics if the result is not finite or overflows a TimeDelta
.
Sourcepub fn div_f64(self, rhs: f64) -> TimeDelta
Available on crate features std
or _float_f64
only.
pub fn div_f64(self, rhs: f64) -> TimeDelta
std
or _float_f64
only.Returns the result of dividing this duration by the given f64
.
§Panics
This panics if the result is not finite or overflows a TimeDelta
.
Sourcepub fn div_f32(self, rhs: f32) -> TimeDelta
Available on crate features std
or _float_f32
only.
pub fn div_f32(self, rhs: f32) -> TimeDelta
std
or _float_f32
only.Returns the result of dividing this duration by the given f32
.
§Panics
This panics if the result is not finite or overflows a TimeDelta
.
Sourcepub fn div_duration_f64(self, rhs: TimeDelta) -> f64 ⓘ
pub fn div_duration_f64(self, rhs: TimeDelta) -> f64 ⓘ
Divides this signed duration by another signed duration.
Sourcepub fn div_duration_f32(self, rhs: TimeDelta) -> f32
pub fn div_duration_f32(self, rhs: TimeDelta) -> f32
Divides this signed duration by another signed duration.
Source§impl TimeDelta
Additional methods not found in the standard library.
impl TimeDelta
Additional methods not found in the standard library.
In most cases, these APIs exist as a result of the fact that this duration is signed.
Sourcepub const fn as_hours(&self) -> i64 ⓘ
pub const fn as_hours(&self) -> i64 ⓘ
Returns the number of whole hours in this duration.
The value returned is negative when the duration is negative.
This does not include any fractional component corresponding to units less than an hour.
Sourcepub const fn as_mins(&self) -> i64 ⓘ
pub const fn as_mins(&self) -> i64 ⓘ
Returns the number of whole minutes in this duration.
The value returned is negative when the duration is negative.
This does not include any fractional component corresponding to units less than a minute.
Sourcepub const fn abs(self) -> TimeDelta
pub const fn abs(self) -> TimeDelta
Returns the absolute value of this signed duration.
If this duration is positive, then this returns the original duration unchanged.
§Panics
This panics when the seconds component of this signed duration is equal to i64::MIN
.
Sourcepub const fn abs_duration(self) -> Duration
pub const fn abs_duration(self) -> Duration
Returns the absolute value of this signed duration as a Duration
.
This method cannot panic because the absolute value of TimeDelta::MIN
is always representable in a Duration
.
Sourcepub const fn neg_abs(self) -> TimeDelta
pub const fn neg_abs(self) -> TimeDelta
Returns the negative absolute value of this signed duration.
If this duration is negative, then this returns the original duration unchanged.
§Panics
This panics when the seconds component of this signed duration is equal to i64::MIN
.
Sourcepub const fn checked_neg(self) -> Option<TimeDelta> ⓘ
pub const fn checked_neg(self) -> Option<TimeDelta> ⓘ
Returns this duration with its sign flipped.
If this duration is zero, then this returns the duration unchanged.
This returns none if the negation does not exist. This occurs in
precisely the cases when TimeDelta::as_secs
is equal to i64::MIN
.
Sourcepub const fn signum(self) -> i8
pub const fn signum(self) -> i8
Returns a number that represents the sign of this duration.
- When
TimeDelta::is_zero
is true, this returns0
. - When
TimeDelta::is_positive
is true, this returns1
. - When
TimeDelta::is_negative
is true, this returns-1
.
The above cases are mutually exclusive.
Sourcepub const fn is_positive(&self) -> bool
pub const fn is_positive(&self) -> bool
Returns true when this duration is positive. That is, greater than TimeDelta::ZERO
.
Sourcepub const fn is_negative(&self) -> bool
pub const fn is_negative(&self) -> bool
Returns true when this duration is negative. That is, less than TimeDelta::ZERO
.
Source§impl TimeDelta
Additional APIs involving SystemInstant
.
impl TimeDelta
Additional APIs involving SystemInstant
.
Sourcepub fn after(&self, _instant: SystemInstant) -> SystemInstant
pub fn after(&self, _instant: SystemInstant) -> SystemInstant
Adds a TimeDelta
to an instant, moving forward or backward in time.
Trait Implementations§
Source§impl AddAssign for TimeDelta
impl AddAssign for TimeDelta
Source§fn add_assign(&mut self, rhs: TimeDelta)
fn add_assign(&mut self, rhs: TimeDelta)
+=
operation. Read moreSource§impl DivAssign<i32> for TimeDelta
impl DivAssign<i32> for TimeDelta
Source§fn div_assign(&mut self, rhs: i32)
fn div_assign(&mut self, rhs: i32)
/=
operation. Read moreSource§impl From<SignedDuration> for TimeDelta
impl From<SignedDuration> for TimeDelta
Source§fn from(from: SignedDuration) -> TimeDelta
fn from(from: SignedDuration) -> TimeDelta
Source§impl From<TimeDelta> for SignedDuration
impl From<TimeDelta> for SignedDuration
Source§fn from(from: TimeDelta) -> SignedDuration
fn from(from: TimeDelta) -> SignedDuration
Source§impl MulAssign<i32> for TimeDelta
impl MulAssign<i32> for TimeDelta
Source§fn mul_assign(&mut self, rhs: i32)
fn mul_assign(&mut self, rhs: i32)
*=
operation. Read moreSource§impl Ord for TimeDelta
impl Ord for TimeDelta
Source§impl PartialOrd for TimeDelta
impl PartialOrd for TimeDelta
Source§impl SubAssign for TimeDelta
impl SubAssign for TimeDelta
Source§fn sub_assign(&mut self, rhs: TimeDelta)
fn sub_assign(&mut self, rhs: TimeDelta)
-=
operation. Read moreimpl Copy for TimeDelta
impl Eq for TimeDelta
impl StructuralPartialEq for TimeDelta
Auto Trait Implementations§
impl Freeze for TimeDelta
impl RefUnwindSafe for TimeDelta
impl Send for TimeDelta
impl Sync for TimeDelta
impl Unpin for TimeDelta
impl UnwindSafe for TimeDelta
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
Source§impl<T> ByteSized for T
impl<T> ByteSized for T
Source§const BYTE_ALIGN: usize = _
const BYTE_ALIGN: usize = _
Source§fn byte_align(&self) -> usize
fn byte_align(&self) -> usize
Source§fn ptr_size_ratio(&self) -> [usize; 2]
fn ptr_size_ratio(&self) -> [usize; 2]
Source§impl<T, R> Chain<R> for Twhere
T: ?Sized,
impl<T, R> Chain<R> for Twhere
T: ?Sized,
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> ExtAny for T
impl<T> ExtAny for T
Source§fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64
TypeId
of Self
using a custom hasher.Source§fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
fn as_any_mut(&mut self) -> &mut dyn Anywhere
Self: Sized,
Source§impl<T> ExtMem for Twhere
T: ?Sized,
impl<T> ExtMem for Twhere
T: ?Sized,
Source§const NEEDS_DROP: bool = _
const NEEDS_DROP: bool = _
Source§fn mem_align_of<T>() -> usize
fn mem_align_of<T>() -> usize
Source§fn mem_align_of_val(&self) -> usize
fn mem_align_of_val(&self) -> usize
Source§fn mem_size_of<T>() -> usize
fn mem_size_of<T>() -> usize
Source§fn mem_size_of_val(&self) -> usize
fn mem_size_of_val(&self) -> usize
Source§fn mem_needs_drop(&self) -> bool
fn mem_needs_drop(&self) -> bool
true
if dropping values of this type matters. Read moreSource§fn mem_forget(self)where
Self: Sized,
fn mem_forget(self)where
Self: Sized,
self
without running its destructor. Read moreSource§fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
fn mem_replace(&mut self, other: Self) -> Selfwhere
Self: Sized,
Source§unsafe fn mem_zeroed<T>() -> T
unsafe fn mem_zeroed<T>() -> T
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst
unsafe_layout
only.T
represented by the all-zero byte-pattern. Read moreSource§fn mem_as_bytes(&self) -> &[u8] ⓘ
fn mem_as_bytes(&self) -> &[u8] ⓘ
unsafe_slice
only.§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Hook for T
impl<T> Hook for T
§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> ⓘ
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> ⓘ
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