pub struct TreeBuildProfile {
pub tree_walk_ms: u128,
pub blob_prep_ms: u128,
pub blob_write_ms: u128,
pub tree_write_ms: u128,
pub file_count: usize,
pub dir_count: usize,
}Fields§
§tree_walk_ms: u128§blob_prep_ms: u128§blob_write_ms: u128§tree_write_ms: u128§file_count: usize§dir_count: usizeTrait Implementations§
Source§impl Clone for TreeBuildProfile
impl Clone for TreeBuildProfile
Source§fn clone(&self) -> TreeBuildProfile
fn clone(&self) -> TreeBuildProfile
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 TreeBuildProfile
impl Debug for TreeBuildProfile
Source§impl Default for TreeBuildProfile
impl Default for TreeBuildProfile
Source§fn default() -> TreeBuildProfile
fn default() -> TreeBuildProfile
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TreeBuildProfile
impl RefUnwindSafe for TreeBuildProfile
impl Send for TreeBuildProfile
impl Sync for TreeBuildProfile
impl Unpin for TreeBuildProfile
impl UnsafeUnpin for TreeBuildProfile
impl UnwindSafe for TreeBuildProfile
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