us-state-info

Crates.ious-state-info
lib.rsus-state-info
version0.2.4
sourcesrc
created_at2024-05-06 17:26:15.191601
updated_at2024-05-09 01:04:56.604006
descriptionA Fork of a Rust implementation of the state names & abbreviations for the USA
homepage
repositoryhttps://github.com/Isaac-Duarte/us-state-info-rs
max_upload_size
id1231314
size27,558
Isaac Duarte (Isaac-Duarte)

documentation

README

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);
}
Commit count: 17

cargo fmt