qubit-command 0.4.0

Command-line process running utilities for Rust
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
use std::{
    io::Write,
    path::PathBuf,
};

/// Streaming destination for captured output.
pub(crate) struct OutputTee {
    /// Writer receiving all emitted bytes.
    pub(crate) writer: Box<dyn Write + Send>,
    /// Path used for diagnostics if writes fail.
    pub(crate) path: PathBuf,
}