pub struct Counter { /* private fields */ }
Expand description
Counts text until a limit. Used for telling whether the text is greater than some threshold
Implementations§
Trait Implementations§
Source§impl ToString for Counter
impl ToString for Counter
Source§fn push_new_line(&mut self)
fn push_new_line(&mut self)
Append a new line character
Source§fn push_str(&mut self, string: &str)
fn push_str(&mut self, string: &str)
Use ToString::push_str_contains_new_line if
string
could contain new linesSource§fn push_str_contains_new_line(&mut self, string: &str)
fn push_str_contains_new_line(&mut self, string: &str)
Used to push strings that may contain new lines
Source§fn add_mapping(&mut self, _source_span: &SpanWithSource)
fn add_mapping(&mut self, _source_span: &SpanWithSource)
Adds a mapping of the from a original position in the source to the position in the current buffer Read more
Source§fn should_halt(&self) -> bool
fn should_halt(&self) -> bool
Some implementors might not ToString the whole input. This signals for users to end early as further usage
of this trait has no effect
fn characters_on_current_line(&self) -> u32
fn is_counting(&self) -> bool
Auto Trait Implementations§
impl Freeze for Counter
impl RefUnwindSafe for Counter
impl Send for Counter
impl Sync for Counter
impl Unpin for Counter
impl UnwindSafe for Counter
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