gaia_access 0.2.0

Access the Gaia ESA Archive for astronomical data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::hash::Hash;

pub trait Schema {
    fn string(&self) -> String;
}

pub trait Table {
    fn string(&self) -> String;
}

pub trait Column: ToString + Eq + Hash + Clone + Copy {}