substrait/parse/text/mod.rs
1// SPDX-License-Identifier: Apache-2.0
2
3//! Utilities for working with Substrait *text* objects.
4//!
5//! The generated [`crate::text`] module exposes the raw YAML-derived structs
6//! (e.g. [`crate::text::simple_extensions::SimpleExtensions`]). This module
7//! provides parsing helpers that validate those raw values and offer
8//! higher-level wrappers for validation, lookups, and combining into protobuf
9//! objects.
10
11pub mod simple_extensions;