pub struct NoopReporter;Expand description
A Reporter that discards everything.
Useful for tests and for non-interactive callers that only care about the
final Result.
Trait Implementations§
Source§impl Reporter for NoopReporter
impl Reporter for NoopReporter
Source§fn step_start(&self, _msg: &str)
fn step_start(&self, _msg: &str)
A unit of work has started.
Source§fn remote_line(&self, line: &str)
fn remote_line(&self, line: &str)
A single line of streamed output from a build or the remote (e.g. a line
of
next build output, or a git receive-pack message). Defaults to no-op.Auto Trait Implementations§
impl Freeze for NoopReporter
impl RefUnwindSafe for NoopReporter
impl Send for NoopReporter
impl Sync for NoopReporter
impl Unpin for NoopReporter
impl UnsafeUnpin for NoopReporter
impl UnwindSafe for NoopReporter
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