use crate::;
/// Views a `SecretString` as its UTF-8 bytes: the `SecretString` → `SecretBytes`
/// conversion.
///
/// The inverse of [`StringEncoding`](super::StringEncoding). Useful to bridge a
/// string-yielding source into a byte-input decoder — e.g. an AWS Secrets
/// Manager string whose contents are themselves base64:
/// `aws_string.mapped(StringToBytes).mapped(Base64Encoding)`.
;