pub struct ThinkingStatistics {
pub lines: usize,
pub words: usize,
pub chars: usize,
}Expand description
Statistics about thinking content
Fields§
§lines: usizeNumber of lines
words: usizeNumber of words
chars: usizeNumber of characters
Trait Implementations§
Source§impl Clone for ThinkingStatistics
impl Clone for ThinkingStatistics
Source§fn clone(&self) -> ThinkingStatistics
fn clone(&self) -> ThinkingStatistics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ThinkingStatistics
impl RefUnwindSafe for ThinkingStatistics
impl Send for ThinkingStatistics
impl Sync for ThinkingStatistics
impl Unpin for ThinkingStatistics
impl UnwindSafe for ThinkingStatistics
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