1 2 3 4 5 6 7 8 9 10 11 12
use cgp::prelude::Async; use crate::traits::types::schema::ProvideSchemaType; pub struct ProvideStringSchema; impl<Encoding> ProvideSchemaType<Encoding> for ProvideStringSchema where Encoding: Async, { type Schema = &'static str; }