SchemaParser

Trait SchemaParser 

Source
pub trait SchemaParser {
    // Required methods
    fn parse_from_str(input: &str) -> SchemaResult<SchemaBuilder>;
    fn parse_from_reader<R: Read>(rdr: R) -> SchemaResult<SchemaBuilder>;
}
Expand description

Trait of parser for a schema

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§