phasesmith-io 0.1.0

Native file-format adapters for PhaseSmith
Documentation
//! Bounded native import/export adapters for application hosts.

mod cif;
mod powder;
mod space_groups;

pub use cif::{
    CifAnisotropicDisplacement, CifAtomSite, CifDiagnostic, CifDiagnosticSeverity, CifIoError,
    CifReadLimits, CifReadResult, CifStructure, CifStructureSource, DisplacementConvention,
    NATIVE_CIF_BACKEND, NATIVE_CIF_BACKEND_VERSION, parse_cif_text, read_cif_file,
};

pub use powder::{
    PowderData, PowderFormat, PowderIoError, PowderReadLimits, parse_powder_text, read_powder_file,
};
pub use space_groups::{
    SPACE_GROUP_DATABASE_PROVENANCE, SpaceGroupDatabaseProvenance, SpaceGroupInfo,
    SpaceGroupLookupError, space_group_by_hall_symbol, space_group_by_number,
    space_group_by_symbol,
};