// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Path handling choices for URI redaction.
/// Controls whether URI paths are retained or replaced by a safe marker.
///
/// # Examples
///
/// ```
/// use qubit_redact::formats::uri::UriPathPolicy;
///
/// assert_eq!(UriPathPolicy::default(), UriPathPolicy::Preserve);
/// ```