postcard-schema-ng 0.3.2

Reflection-like schemas for postcard types
Documentation
1
2
3
4
5
6
7
//! Implementations of the [`Schema`] trait for the `uuid` crate v1.0

use crate::{schema::DataModelType, Schema};

impl Schema for uuid_v1_0::Uuid {
    const SCHEMA: &'static DataModelType = &DataModelType::ByteArray;
}