substrait_validator/output/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3//! Output representation module.
4//!
5//! This module provides the data structures for representing the output of the
6//! validator.
7
8#[macro_use]
9pub mod diagnostic;
10
11pub mod comment;
12pub mod extension;
13pub mod parse_result;
14pub mod path;
15pub mod primitive_data;
16pub mod tree;
17pub mod type_system;