Struct secrecy::Secret [−][src]
Wrapper type for values that contains secrets, which attempts to limit accidental exposure and ensure secrets are wiped from memory when dropped. (e.g. passwords, cryptographic keys, access tokens or other credentials)
Access to the secret inner value occurs through the ExposeSecret
trait,
which provides an expose_secret()
method for accessing the inner secret
value.
Implementations
impl<S> Secret<S> where
S: Zeroize,
[src]
S: Zeroize,
Trait Implementations
impl<S> Clone for Secret<S> where
S: CloneableSecret,
[src]
S: CloneableSecret,
fn clone(&self) -> Self
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<S> Debug for Secret<S> where
S: Zeroize + DebugSecret,
[src]
S: Zeroize + DebugSecret,
impl<S> Drop for Secret<S> where
S: Zeroize,
[src]
S: Zeroize,
impl<S> ExposeSecret<S> for Secret<S> where
S: Zeroize,
[src]
S: Zeroize,
fn expose_secret(&self) -> &S
[src]
Auto Trait Implementations
impl<S> Send for Secret<S> where
S: Send,
S: Send,
impl<S> Sync for Secret<S> where
S: Sync,
S: Sync,
impl<S> Unpin for Secret<S> where
S: Unpin,
S: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,