pub trait ExposeSecret<S: ?Sized> {
// Required method
fn expose_secret(&self) -> &S;
}Expand description
Expose a reference to an inner secret
Required Methods§
Sourcefn expose_secret(&self) -> &S
fn expose_secret(&self) -> &S
Expose secret: this is the only method providing access to a secret.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".