qubit-command 0.2.2

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.
 *
 ******************************************************************************/
/// Guard restoring synthetic-child state when dropped.
pub(super) struct FakeChildGuard {
    /// Previously configured state for this thread.
    pub(super) previous: bool,
}

impl Drop for FakeChildGuard {
    /// Restores the previous synthetic-child state.
    fn drop(&mut self) {
        super::FAKE_CHILDREN_ENABLED.set(self.previous);
    }
}