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