pub struct TerminalBulkState {
pub state: BulkState,
pub active_counter_rendered: bool,
pub suppressed_tail: Vec<String>,
pub is_tty_override: Option<bool>,
}Fields§
§state: BulkState§active_counter_rendered: bool§suppressed_tail: Vec<String>§is_tty_override: Option<bool>Implementations§
Source§impl TerminalBulkState
impl TerminalBulkState
pub fn is_tty(&self) -> bool
pub fn clear_active_counter(&mut self)
pub fn clear_active_counter_to_writer<W: Write>(&mut self, writer: &mut W)
pub fn flush_summary(&mut self)
pub fn flush_summary_to_writer<W: Write>(&mut self, writer: &mut W)
pub fn process_line(&mut self, line: &str)
pub fn process_line_to_writer<W: Write>( &mut self, line: &str, stderr: bool, writer: &mut W, )
pub fn take_suppressed_tail(&mut self) -> Vec<String>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TerminalBulkState
impl RefUnwindSafe for TerminalBulkState
impl Send for TerminalBulkState
impl Sync for TerminalBulkState
impl Unpin for TerminalBulkState
impl UnsafeUnpin for TerminalBulkState
impl UnwindSafe for TerminalBulkState
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Applies the layer to a service and wraps it in [
Layered].