// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! State for an owning asynchronous whole-file write.
use crateWriteFailureState;
/// Lifecycle state of an owning asynchronous whole-file write.
///
/// # Examples
///
/// ```rust
/// use qubit_fs::write::AsyncWriteAllOperationState;
///
/// assert!(matches!(AsyncWriteAllOperationState::Ready, AsyncWriteAllOperationState::Ready));
/// ```