Trait apache_avro::validator::EnumSymbolNameValidator

source ·
pub trait EnumSymbolNameValidator: Send + Sync {
    // Required method
    fn validate(&self, name: &str) -> AvroResult<()>;

    // Provided method
    fn regex(&self) -> &'static Regex { ... }
}
Expand description

A trait that validates enum symbol names. To register a custom one use set_enum_symbol_name_validator.

Required Methods§

source

fn validate(&self, name: &str) -> AvroResult<()>

Validates the symbols of an Enum schema name and returns nothing (unit), or Error::EnumSymbolName if it is invalid.

Provided Methods§

source

fn regex(&self) -> &'static Regex

Returns the regex used to validate the symbols of enum schema according to the Avro specification.

Implementors§