postcard_schema/impls/
uuid_v1_0.rs

1//! Implementations of the [`Schema`] trait for the `uuid` crate v1.0
2
3use crate::{
4    schema::{DataModelType, NamedType},
5    Schema,
6};
7
8impl Schema for uuid_v1_0::Uuid {
9    const SCHEMA: &'static NamedType = &NamedType {
10        name: "Uuid",
11        ty: &DataModelType::ByteArray,
12    };
13}