starstuff_types/
catalog.rs

1//! Star catalog parsers
2
3pub mod hipparcos;
4pub mod osbsc;
5pub mod util;
6pub mod yale;
7
8/// Determines if a parsed record is valid. User can implement this to require certain fields or conditions.
9pub trait ValidParse {
10    fn is_valid_parse(&self) -> bool;
11}