pub struct PrintInfo<Stdout: Write, Stderr: Write> {
pub stdout: Stdout,
pub stderr: Stderr,
pub info_style: Style,
pub stdout_style: Style,
pub stderr_style: Style,
}
Fields§
§stdout: Stdout
§stderr: Stderr
§info_style: Style
§stdout_style: Style
§stderr_style: Style
Implementations§
Source§impl PrintInfo<LineWriter<Stdout>, LineWriter<Stderr>>
impl PrintInfo<LineWriter<Stdout>, LineWriter<Stderr>>
Trait Implementations§
Auto Trait Implementations§
impl<Stdout, Stderr> Freeze for PrintInfo<Stdout, Stderr>
impl<Stdout, Stderr> RefUnwindSafe for PrintInfo<Stdout, Stderr>where
Stdout: RefUnwindSafe,
Stderr: RefUnwindSafe,
impl<Stdout, Stderr> Send for PrintInfo<Stdout, Stderr>
impl<Stdout, Stderr> Sync for PrintInfo<Stdout, Stderr>
impl<Stdout, Stderr> Unpin for PrintInfo<Stdout, Stderr>
impl<Stdout, Stderr> UnwindSafe for PrintInfo<Stdout, Stderr>where
Stdout: UnwindSafe,
Stderr: 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