// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Temporary resource lifecycle states.
/// Observable lifecycle and recovery state of a temporary resource handle.
///
/// # Examples
///
/// ```rust
/// use qubit_fs::temp::TempResourceState;
///
/// assert!(matches!(TempResourceState::Owned, TempResourceState::Owned));
/// ```