// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Destination disposition for write operations.
/// How opening a writer treats an existing destination.
///
/// # Examples
///
/// ```rust
/// use qubit_fs::write::WriteDisposition;
///
/// assert_eq!(WriteDisposition::CreateOrReplace, WriteDisposition::default());
/// ```