pub struct LoadProfile {
pub mmap_ms: f64,
pub dequant_ms: f64,
pub unrotate_ms: f64,
pub materialize_ms: f64,
pub cuda_upload_ms: f64,
}Fields§
§mmap_ms: f64§dequant_ms: f64§unrotate_ms: f64§materialize_ms: f64§cuda_upload_ms: f64Trait Implementations§
Source§impl Clone for LoadProfile
impl Clone for LoadProfile
Source§fn clone(&self) -> LoadProfile
fn clone(&self) -> LoadProfile
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 moreSource§impl Debug for LoadProfile
impl Debug for LoadProfile
Auto Trait Implementations§
impl Freeze for LoadProfile
impl RefUnwindSafe for LoadProfile
impl Send for LoadProfile
impl Sync for LoadProfile
impl Unpin for LoadProfile
impl UnsafeUnpin for LoadProfile
impl UnwindSafe for LoadProfile
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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