Skip to main content

noop

Function noop 

Source
pub fn noop() -> Arc<dyn Reporter> 
Expand description

Shared handle to a NoopReporter.

§Examples

use subx_core::core::report::{ProgressEvent, Reporter, noop};

let reporter = noop();
// Compiles and does nothing.
reporter.progress(&ProgressEvent::Message("silence"));