| Crates.io | isin |
| lib.rs | isin |
| version | 0.1.19 |
| created_at | 2021-03-16 22:50:19.773241+00 |
| updated_at | 2025-06-26 18:56:37.637898+00 |
| description | Support for creating and validating ISINs |
| homepage | |
| repository | https://github.com/gnp/isin-rs.git |
| max_upload_size | |
| id | 369987 |
| size | 124,684 |
An ISIN type for working with validated International Security Identifiers (ISINs) as defined in
ISO 6166.
The checksum calculation uses a table-driven algorithm to minimize overhead vs. a direct translation of the formula definition.
This crate is part of the Financial Identifiers series:
Add this to your Cargo.toml:
[dependencies]
isin = "0.1"
use isin;
let isin_string = "US0378331005";
match isin::parse(isin_string) {
Ok(isin) => {
println!("Parsed ISIN: {}", isin.to_string()); // "US0378331005"
println!(" Prefix: {}", isin.prefix()); // "US"
println!(" Basic code: {}", isin.basic_code()); // "037833100"
println!(" Check digit: {}", isin.check_digit()); // '5'
}
Err(err) => panic!("Unable to parse ISIN {}: {}", isin_string, err),
}
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.