pub enum OutputMode {
Streaming,
Collected,
Auto,
}
Expand description
Output mode for displaying results.
This controls how and when results are presented to the user, affecting both performance perception and data formatting.
Variants§
Streaming
Stream results as they become available (good for interactive use)
Collected
Collect all results before displaying (good for formatting/sorting)
Auto
Automatically choose based on context (terminal vs pipe, etc.)
Trait Implementations§
Source§impl Clone for OutputMode
impl Clone for OutputMode
Source§fn clone(&self) -> OutputMode
fn clone(&self) -> OutputMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for OutputMode
impl Debug for OutputMode
Source§impl Display for OutputMode
impl Display for OutputMode
Source§impl PartialEq for OutputMode
impl PartialEq for OutputMode
impl StructuralPartialEq for OutputMode
Auto Trait Implementations§
impl Freeze for OutputMode
impl RefUnwindSafe for OutputMode
impl Send for OutputMode
impl Sync for OutputMode
impl Unpin for OutputMode
impl UnwindSafe for OutputMode
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