serde_valid_derive 2.0.2

JSON Schema based validation tool using serde.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::{
    attribute::{common::message_format::MessageFormat, MetaPathStructValidation, Validator},
    warning::WithWarnings,
};

#[inline]
pub fn extract_struct_validator_from_meta_path(
    validation_type: MetaPathStructValidation,
    _validation: &syn::Path,
    _message_format: MessageFormat,
) -> Result<WithWarnings<Validator>, crate::Errors> {
    match validation_type {}
}