pub struct LoaderStats {
pub cells_loaded: usize,
pub formulas_loaded: usize,
pub sheets_loaded: usize,
pub load_time_ms: u64,
pub backend_read_time_ms: u64,
pub engine_insert_time_ms: u64,
pub vertex_alloc_time_ms: u64,
pub sheet_index_time_ms: u64,
pub edges_rebuild_time_ms: u64,
}Fields§
§cells_loaded: usize§formulas_loaded: usize§sheets_loaded: usize§load_time_ms: u64§backend_read_time_ms: u64§engine_insert_time_ms: u64§vertex_alloc_time_ms: u64§sheet_index_time_ms: u64§edges_rebuild_time_ms: u64Trait Implementations§
Source§impl Debug for LoaderStats
impl Debug for LoaderStats
Source§impl Default for LoaderStats
impl Default for LoaderStats
Source§fn default() -> LoaderStats
fn default() -> LoaderStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LoaderStats
impl RefUnwindSafe for LoaderStats
impl Send for LoaderStats
impl Sync for LoaderStats
impl Unpin for LoaderStats
impl UnwindSafe for LoaderStats
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§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> 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