pub struct SchemaValidator;Expand description
Enhanced schema validator
Implementations§
Source§impl SchemaValidator
impl SchemaValidator
Sourcepub fn validate(schema: &IntermediateSchema) -> Result<ValidationReport>
pub fn validate(schema: &IntermediateSchema) -> Result<ValidationReport>
Validate an intermediate schema with detailed error reporting
§Errors
Currently infallible; always returns Ok containing the report.
The Result return type is reserved for future validation that may
require fallible I/O.
Auto Trait Implementations§
impl Freeze for SchemaValidator
impl RefUnwindSafe for SchemaValidator
impl Send for SchemaValidator
impl Sync for SchemaValidator
impl Unpin for SchemaValidator
impl UnsafeUnpin for SchemaValidator
impl UnwindSafe for SchemaValidator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more