pub trait Validate {
    fn validate<P, R>(&self, _root: &Root, _path: P, _report: &mut R)
    where
        P: Fn() -> Path,
        R: FnMut(&dyn Fn() -> Path, Error)
, { ... } }
Expand description

Trait for validating glTF JSON data so that the library can function without panicking.

Provided methods

Validates the invariants required for the library to function safely.

Implementations on Foreign Types

Implementors