athena_rs 3.26.2

Hyper performant polyglot Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Schema service row-to-contract mapping helpers.
//!
//! This module provides a stable row-mapper facade while concrete mapping
//! ownership is split by domain:
//! - `service_row_mapper_catalog` for relation/column/constraint rows
//! - `service_row_mapper_migration` for migration rows

pub(super) use super::service_row_mapper_catalog::{
    map_column_rows, map_relation_rows, map_unique_constraint_rows,
};
pub(super) use super::service_row_mapper_migration::map_migration_rows;