gaia_access 0.1.4

Access the Gaia ESA Archive for astronomical data.
Documentation
// This code is generated by generate_code.py, do not modify it manually.

//! This module contains all the known tables in the job_upload schema.

use crate::traits::Schema;

/// The job_upload schema. (No further description available)
#[allow(non_camel_case_types)]
pub struct job_upload;

impl Schema for job_upload {
    fn string(&self) -> String {
        "job_upload".to_string()
    }
}

#[cfg(test)]
/// Collects all the known tables in the job_upload schema.
pub(crate) fn collect_known(
    map: &mut std::collections::HashMap<String, std::collections::HashMap<String, Vec<String>>>,
) {
    // Some tables do not have any columns. Disabling compiler warnings for these cases
    #[allow(unused_mut)]
    let mut tables = std::collections::HashMap::new();

    map.insert(job_upload.string(), tables);
}