pub type SecretString = SecretBox<String>;
Wrapper type for strings that contains secrets. See also SecretBox.
struct SecretString { inner_secret: Box<String>, }
inner_secret: Box<String>