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
11
12
13
14
//! Dataset types for xportrs.
//!
//! This module defines the core data structures used to represent CDISC domain
//! datasets in memory. The design is columnar and DataFrame-agnostic.

mod domain_dataset;
mod format;
mod iter;
mod newtypes;

pub use domain_dataset::{Column, ColumnData, Dataset, VariableRole};
pub use format::{Format, FormatParseError, Justification};
pub use iter::{ColumnNames, IntoIter, Iter, IterMut};
pub use newtypes::{DomainCode, Label, VariableName};