[][src]Struct loggy::ErrorsScope

pub struct ErrorsScope { /* fields omitted */ }

Track the number of errors in the scope of the lifetime of the instance of this class.

Methods

impl ErrorsScope[src]

pub fn new() -> ErrorsScope[src]

Initially, the scope is considered to have had no errors, regardless of any previous calls to error!.

pub fn errors(&self) -> usize[src]

Return the number of calls to error! in the current thread since this instance was created.

This includes calls to note! if the value given to is_error is true.

pub fn had_errors(&self) -> bool[src]

Return whether any calles to error! were made in the current thread since this instance was created.

This includes calls to note! if the value given to is_error is true.

Auto Trait Implementations

impl Send for ErrorsScope

impl Sync for ErrorsScope

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]