// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Cleanup state reported after temporary-resource persistence.
/// State of the private temporary container after publication succeeds.
///
/// # Examples
///
/// ```rust
/// use qubit_fs::temp::PersistCleanupState;
///
/// assert!(matches!(PersistCleanupState::Complete, PersistCleanupState::Complete));
/// ```