// =============================================================================
// Copyright (c) 2026 Haixing Hu.
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0.
// =============================================================================
//! Completion state shared by redaction operations.
/// Describes whether a redaction operation produced all required safe output.
///
/// # Examples
///
/// ```
/// use qubit_redact::{RedactionCompletion, Redactor};
///
/// let output = Redactor::standard().redact_field("password", "raw-secret");
/// assert_eq!(output.summary().completion(), RedactionCompletion::Complete);
/// ```