xportrs 0.0.8

CDISC-compliant XPT file generation and parsing library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Schema planning for xportrs.
//!
//! This module handles the derivation of XPT transport schemas from datasets
//! and metadata. The schema plan defines the exact byte layout for XPT files.

mod derive;
pub(crate) mod plan;

pub(crate) use derive::derive_schema_plan;
pub(crate) use plan::{DatasetSchema, VariableSpec};