#state #deserialize #usa

us-state-info

A Fork of a Rust implementation of the state names & abbreviations for the USA

5 releases

0.2.4 May 9, 2024
0.2.3 May 7, 2024
0.2.2 May 6, 2024
0.2.1 May 6, 2024
0.2.0 May 6, 2024

#1003 in Parser implementations

Download history 738/week @ 2025-01-02 966/week @ 2025-01-09 259/week @ 2025-01-16 705/week @ 2025-01-23 455/week @ 2025-01-30 707/week @ 2025-02-06 179/week @ 2025-02-13 697/week @ 2025-02-20 1675/week @ 2025-02-27 273/week @ 2025-03-06 228/week @ 2025-03-13 214/week @ 2025-03-20 595/week @ 2025-03-27 481/week @ 2025-04-03 762/week @ 2025-04-10 1059/week @ 2025-04-17

3,013 downloads per month

Apache-2.0

16KB
326 lines

us-state-info

United States Individual State Information [Docs] Apache-2 licensed CI

A Rust implementation of the state names & abbreviations for the USA

Usage

Basic Usage

use us_state_info_rs::State;

fn main() {
    let iowa_state = State::Iowa;
    println!("{}-{}", iowa_state, iowa_state.abbreviation());
}

Serde Serialization and Deserialization

With Serde support enabled, you can serialize and deserialize states. By default, states are serialized to their full names. If you enable the serde_abbreviation feature, they will be serialized to their abbreviations instead.

use serde_json::json;
use us_state_info_rs::State;

fn main() {
    let state = State::California;
    let serialized = serde_json::to_string(&state).unwrap();
    println!("Serialized: {}", serialized); // "California" or "CA" with `serde_abbreviation`

    let deserialized: State = serde_json::from_str(&serialized).unwrap(); // In this crate the deserialization can either be the 2 letter or Full name of the state.
    println!("Deserialized: {}", deserialized);
}

Dependencies

~150KB