Skip to main content

REDACTED_PLACEHOLDER

Constant REDACTED_PLACEHOLDER 

Source
pub const REDACTED_PLACEHOLDER: &str = "<redacted>";
Expand description

Fixed placeholder substituted for every redacted value.

A single constant so every redacting Debug impl (and every test that asserts on the placeholder) stays in sync if the text ever changes.

ยงExamples

use mcp_execution_core::REDACTED_PLACEHOLDER;

assert_eq!(REDACTED_PLACEHOLDER, "<redacted>");