enum PushPrinter {
External(Box<dyn ExternalPrinter + Send>),
Stderr,
}Expand description
推送打印器:tty 下走 rustyline ExternalPrinter(不撞 prompt), 非 tty(pipe / 重定向)下降级到 stderr,保证脚本 / 测试里 REPL 仍可用。
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for PushPrinter
impl !RefUnwindSafe for PushPrinter
impl Send for PushPrinter
impl !Sync for PushPrinter
impl Unpin for PushPrinter
impl UnsafeUnpin for PushPrinter
impl !UnwindSafe for PushPrinter
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