pub struct TaskTimeStats {
pub user_time: MonotonicDuration,
pub system_time: MonotonicDuration,
}Fields§
§user_time: MonotonicDuration§system_time: MonotonicDurationTrait Implementations§
Source§impl Add for TaskTimeStats
impl Add for TaskTimeStats
Source§impl AddAssign for TaskTimeStats
impl AddAssign for TaskTimeStats
Source§fn add_assign(&mut self, other: Self)
fn add_assign(&mut self, other: Self)
Performs the
+= operation. Read moreSource§impl Clone for TaskTimeStats
impl Clone for TaskTimeStats
Source§fn clone(&self) -> TaskTimeStats
fn clone(&self) -> TaskTimeStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TaskTimeStats
Source§impl Debug for TaskTimeStats
impl Debug for TaskTimeStats
Source§impl Default for TaskTimeStats
impl Default for TaskTimeStats
Source§fn default() -> TaskTimeStats
fn default() -> TaskTimeStats
Returns the “default value” for a type. Read more
impl Eq for TaskTimeStats
Source§impl PartialEq for TaskTimeStats
impl PartialEq for TaskTimeStats
impl StructuralPartialEq for TaskTimeStats
Auto Trait Implementations§
impl Freeze for TaskTimeStats
impl RefUnwindSafe for TaskTimeStats
impl Send for TaskTimeStats
impl Sync for TaskTimeStats
impl Unpin for TaskTimeStats
impl UnsafeUnpin for TaskTimeStats
impl UnwindSafe for TaskTimeStats
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,
§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<F, N> FidlIntoNative<Box<N>> for Fwhere
F: FidlIntoNative<N>,
impl<F, N> FidlIntoNative<Box<N>> for Fwhere
F: FidlIntoNative<N>,
fn fidl_into_native(self) -> Box<N>
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> ⓘ
Converts
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> ⓘ
Converts
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