masked 0.1.4

A wrapper over a value containing sensitive information
Documentation
1
2
3
4
5
6
7
8
9
use std::fmt;

use crate::Masked;

impl<T> fmt::Display for Masked<T> {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "[masked]")
    }
}