bamcensus-acs 0.1.0

Interaction with the American Community Survey API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod constants;

mod acs_api_query_params;
mod acs_geoid_query;
mod acs_type;
mod acs_value;

pub use acs_api_query_params::AcsApiQueryParams;
pub use acs_geoid_query::AcsGeoidQuery;
pub use acs_type::AcsType;
pub use acs_value::AcsValue;

use bamcensus_core::model::identifier::Geoid;
use std::rc::Rc;
pub type DeserializeGeoidFn = Rc<dyn Fn(Vec<serde_json::Value>) -> Result<Geoid, String>>;