masked 0.1.4

A wrapper over a value containing sensitive information
Documentation
1
2
3
4
5
6
7
use crate::Masked;

impl<T> AsRef<T> for Masked<T> {
    fn as_ref(&self) -> &T {
        &self.0
    }
}