pub struct CaptureProfile {
pub worktree_status_ms: u128,
pub preflight_ms: u128,
pub attribution_ms: u128,
pub execute_save_ms: u128,
}Expand description
Capture-specific timings owned by the operation implementation.
Fields§
§worktree_status_ms: u128§preflight_ms: u128§attribution_ms: u128§execute_save_ms: u128Trait Implementations§
Source§impl Clone for CaptureProfile
impl Clone for CaptureProfile
Source§fn clone(&self) -> CaptureProfile
fn clone(&self) -> CaptureProfile
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 CaptureProfile
Source§impl Debug for CaptureProfile
impl Debug for CaptureProfile
Source§impl Default for CaptureProfile
impl Default for CaptureProfile
Source§fn default() -> CaptureProfile
fn default() -> CaptureProfile
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CaptureProfile
impl RefUnwindSafe for CaptureProfile
impl Send for CaptureProfile
impl Sync for CaptureProfile
impl Unpin for CaptureProfile
impl UnsafeUnpin for CaptureProfile
impl UnwindSafe for CaptureProfile
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