Type Alias valico::json_schema::keywords::KeywordResult

source ·
pub type KeywordResult = Result<Option<BoxedValidator>, SchemaError>;

Aliased Type§

enum KeywordResult {
    Ok(Option<Box<dyn Validator + Sync + Send>>),
    Err(SchemaError),
}

Variants§

§1.0.0

Ok(Option<Box<dyn Validator + Sync + Send>>)

Contains the success value

§1.0.0

Err(SchemaError)

Contains the error value