unc-token 0.10.2

a small crate to work with UNC token values ergonomically and efficiently (UNC Protocol)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::UncToken;

impl schemars::JsonSchema for UncToken {
    fn is_referenceable() -> bool {
        false
    }

    fn schema_name() -> String {
        String::schema_name()
    }

    fn json_schema(gen: &mut schemars::gen::SchemaGenerator) -> schemars::schema::Schema {
        String::json_schema(gen)
    }
}