pub type SecretString = SecretBox<str>;Expand description
Re-exported from age so dependents can name and read passphrase secrets
without taking a direct dependency on age.
Secret string type.
This is a type alias for SecretBox<str> which supports some helpful trait impls.
Notably it has a From<String> impl which is the preferred method for construction.
Aliased Typeยง
pub struct SecretString { /* private fields */ }