pub struct ConsoleReporter<W: Write + Send> { /* private fields */ }Expand description
Console BDD tree, buffered per scenario — keyed by (file, scenario)
(the run-wide identity), since two same-named scenarios under --jobs > 1
must never share a buffer.
Implementations§
Source§impl<W: Write + Send> ConsoleReporter<W>
impl<W: Write + Send> ConsoleReporter<W>
Sourcepub fn new(out: W, redactions: Redactions) -> Self
pub fn new(out: W, redactions: Redactions) -> Self
A console reporter writing to out.
Trait Implementations§
Auto Trait Implementations§
impl<W> Freeze for ConsoleReporter<W>where
W: Freeze,
impl<W> RefUnwindSafe for ConsoleReporter<W>where
W: RefUnwindSafe,
impl<W> Send for ConsoleReporter<W>
impl<W> Sync for ConsoleReporter<W>where
W: Sync,
impl<W> Unpin for ConsoleReporter<W>where
W: Unpin,
impl<W> UnsafeUnpin for ConsoleReporter<W>where
W: UnsafeUnpin,
impl<W> UnwindSafe for ConsoleReporter<W>where
W: UnwindSafe,
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