Skip to main content

sim_table_remote/
lib.rs

1//! Remote-backed SIM table directory.
2//!
3//! This crate exposes a [`RemoteDir`] that projects a remote table site as a
4//! SIM table object, along with the [`RemoteDirDescriptor`] citizen record that
5//! describes it and the [`RemoteTableSite`] adapter used to back it.
6
7#![forbid(unsafe_code)]
8#![deny(missing_docs)]
9#![allow(deprecated)]
10
11mod citizen;
12mod remote_dir;
13mod site;
14
15pub use citizen::{RemoteDirDescriptor, remote_dir_class_symbol};
16pub use remote_dir::{RemoteDir, remote_dir_value};
17pub use site::{RemoteTableSite, wrap_remote_table_site};
18
19#[cfg(test)]
20mod tests;