// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
// facade tests.
//! Durability requirements for completed filesystem operations.
/// Required storage synchronization strength for an operation outcome.
///
/// # Examples
///
/// ```rust
/// use qubit_fs::metadata::DurabilityRequirement;
///
/// assert!(matches!(DurabilityRequirement::NotRequired, DurabilityRequirement::NotRequired));
/// ```