nameless 0.15.2

Portable everything-is-a-URL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// This struct encapsulates the name of an entity whose name is being
/// hidden in the `nameless` API. It can be written to an `OutputByteStream`
/// but it's otherwise entirely opaque.
pub struct Pseudonym {
    pub(crate) name: String,
}

impl Pseudonym {
    pub(crate) fn new(name: String) -> Self {
        Self { name }
    }
}