pub struct TimeSpan(pub i64);
Expand description
A value representing an interval of time, in microseconds.
Tuple Fields§
§0: i64
Implementations§
Source§impl TimeSpan
impl TimeSpan
Sourcepub fn from_microseconds(v: i64) -> TimeSpan
pub fn from_microseconds(v: i64) -> TimeSpan
Create a new timespan from microseconds.
Sourcepub fn from_milliseconds(v: i64) -> TimeSpan
pub fn from_milliseconds(v: i64) -> TimeSpan
Create a new timespan from milliseconds.
Sourcepub fn from_seconds(v: i64) -> TimeSpan
pub fn from_seconds(v: i64) -> TimeSpan
Create a new timespan from seconds.
Sourcepub fn from_minutes(v: i64) -> TimeSpan
pub fn from_minutes(v: i64) -> TimeSpan
Create a new timespan from minutes.
Sourcepub fn from_hours(v: i64) -> TimeSpan
pub fn from_hours(v: i64) -> TimeSpan
Create a new timespan from hours.
Sourcepub fn as_microseconds(self) -> i64
pub fn as_microseconds(self) -> i64
Return the full number of microseconds in this TimeSpan
.
Sourcepub fn as_milliseconds(self) -> i64
pub fn as_milliseconds(self) -> i64
Return the full number of milliseconds in this TimeSpan
.
Sourcepub fn as_seconds(self) -> i64
pub fn as_seconds(self) -> i64
Return the full number of seconds in this TimeSpan
.
Sourcepub fn as_minutes(self) -> i64
pub fn as_minutes(self) -> i64
Return the full number of minutes in this TimeSpan
.
Trait Implementations§
Source§impl Ord for TimeSpan
impl Ord for TimeSpan
Source§impl PartialOrd for TimeSpan
impl PartialOrd for TimeSpan
impl Copy for TimeSpan
impl Eq for TimeSpan
impl StructuralPartialEq for TimeSpan
Auto Trait Implementations§
impl Freeze for TimeSpan
impl RefUnwindSafe for TimeSpan
impl Send for TimeSpan
impl Sync for TimeSpan
impl Unpin for TimeSpan
impl UnwindSafe for TimeSpan
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)