#identifier #finance #equity #stock #isin

bin+lib isin

Support for creating and validating ISINs

5 releases

0.1.14 Feb 10, 2023
0.1.13 Feb 9, 2023
0.1.12 Dec 22, 2022
0.1.11 May 29, 2022
0.1.8 Mar 22, 2021

#378 in Parser implementations

Download history 25/week @ 2022-12-02 26/week @ 2022-12-09 104/week @ 2022-12-16 76/week @ 2022-12-23 70/week @ 2022-12-30 33/week @ 2023-01-06 33/week @ 2023-01-13 42/week @ 2023-01-20 21/week @ 2023-01-27 48/week @ 2023-02-03 94/week @ 2023-02-10 55/week @ 2023-02-17 69/week @ 2023-02-24 115/week @ 2023-03-03 31/week @ 2023-03-10 24/week @ 2023-03-17

242 downloads per month
Used in investments

MIT/Apache

40KB
744 lines

isin

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:

  • CUSIP: Committee on Uniform Security Identification Procedures (ANSI X9.6-2020)
  • ISIN: International Securities Identification Number (ISO 6166:2021)
  • LEI: Legal Entity Identifier (ISO 17442:2020)

Usage

Add this to your Cargo.toml:

[dependencies]
isin = "0.1"

Example

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),
}

License

Licensed under either of

at your option.

Contribution

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.

Dependencies

~1MB
~14K SLoC