// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Methods used to publish filesystem changes.
/// Concrete method used to publish a successful filesystem change.
///
/// # Examples
///
/// ```rust
/// use qubit_fs::metadata::PublicationMethod;
///
/// assert!(matches!(PublicationMethod::Direct, PublicationMethod::Direct));
/// ```