2 unstable releases

0.2.0 Jan 22, 2019
0.1.0 Jun 19, 2017

#18 in #international

Download history 1/week @ 2024-02-01 20/week @ 2024-02-15 114/week @ 2024-02-22 59/week @ 2024-02-29 12/week @ 2024-03-07 7/week @ 2024-03-14 8/week @ 2024-03-21 41/week @ 2024-03-28 28/week @ 2024-04-04 4/week @ 2024-04-11 14/week @ 2024-04-18 4/week @ 2024-04-25

65 downloads per month
Used in 2 crates

MIT license

22KB
471 lines

isbn

Build Status

A library for handling International Standard Book Number, or ISBNs.


lib.rs:

A library for handling International Standard Book Number, or ISBNs.

Examples

use isbn::{Isbn10, Isbn13};

let isbn_10 = Isbn10::new(8, 9, 6, 6, 2, 6, 1, 2, 6, 4).unwrap();
assert_eq!(isbn_10.hyphenate().unwrap().as_str(), "89-6626-126-4");
assert_eq!(isbn_10.registration_group(), Ok("Korea, Republic"));
assert_eq!("89-6626-126-4".parse(), Ok(isbn_10));

let isbn_13 = Isbn13::new(9, 7, 8, 1, 4, 9, 2, 0, 6, 7, 6, 6, 5).unwrap();
assert_eq!(isbn_13.hyphenate().unwrap().as_str(), "978-1-4920-6766-5");
assert_eq!(isbn_13.registration_group(), Ok("English language"));
assert_eq!("978-1-4920-6766-5".parse(), Ok(isbn_13));

Dependencies

~210KB