// Author: Abdulwahed Mansour
//! Django validation — delegates to clarax-core.
//!
//! This module is a thin wrapper that converts Django-specific types
//! to clarax-core types and calls the core validation engine.
use crateFieldDescriptor;
// Re-export core validation types for downstream use.
pub use ValidationReport;
pub use FieldValue;
/// Validates a batch of Django field values against their descriptors.
///
/// Delegates to `clarax_core::validate_batch()` after converting
/// Django descriptors to core descriptors. Rayon parallelism kicks in
/// at the core's threshold (128 entries).