pub struct Phase {
pub name: &'static str,
pub elapsed: Duration,
pub note: Option<String>,
}Expand description
One measured phase.
Fields§
§name: &'static str§elapsed: Duration§note: Option<String>What the phase did — candidate counts, symbols scored, a cache verdict.
Auto Trait Implementations§
impl Freeze for Phase
impl RefUnwindSafe for Phase
impl Send for Phase
impl Sync for Phase
impl Unpin for Phase
impl UnsafeUnpin for Phase
impl UnwindSafe for Phase
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