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> From<T> for Masked<T> {
    fn from(value: T) -> Self {
        Self(value)
    }
}