[][src]Struct isbn::Isbn10

pub struct Isbn10 { /* fields omitted */ }

10-digit ISBN format.

Methods

impl Isbn10
[src]

pub fn new(
    a: u8,
    b: u8,
    c: u8,
    d: u8,
    e: u8,
    f: u8,
    g: u8,
    h: u8,
    i: u8,
    j: u8
) -> IsbnResult<Isbn10>
[src]

Creates a new ISBN10 code from 10 digits.

Examples

use isbn::Isbn10;

let isbn10 = Isbn10::new(8, 9, 6, 6, 2, 6, 1, 2, 6, 4).unwrap();

pub fn try_from(isbn13: Isbn13) -> IsbnResult<Self>
[src]

Convert ISBN-13 to ISBN-10, if applicable.

use isbn::{Isbn10, Isbn13};

let isbn_13 = Isbn13::new(9, 7, 8, 1, 4, 9, 2, 0, 6, 7, 6, 6, 5).unwrap();
assert_eq!(Isbn10::try_from(isbn_13), "1-4920-6766-0".parse());

pub fn hyphenate(&self) -> Result<ArrayString<[u8; 17]>, IsbnError>
[src]

Hyphenate an ISBN-10 into its parts:

  • Registration group
  • Registrant
  • Publication
  • Check digit
use isbn::Isbn10;

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");

pub fn registration_group(&self) -> Result<&str, IsbnError>
[src]

Retrieve the name of the registration group.

use isbn::Isbn10;

let isbn_10 = Isbn10::new(8, 9, 6, 6, 2, 6, 1, 2, 6, 4).unwrap();
assert_eq!(isbn_10.registration_group(), Ok("Korea, Republic"));

Trait Implementations

impl Copy for Isbn10
[src]

impl Display for Isbn10
[src]

impl Debug for Isbn10
[src]

impl PartialEq<Isbn10> for Isbn10
[src]

impl FromStr for Isbn10
[src]

type Err = IsbnError

The associated error which can be returned from parsing.

impl Hash for Isbn10
[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl From<Isbn10> for Isbn
[src]

impl From<Isbn10> for Isbn13
[src]

impl Clone for Isbn10
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Isbn10

impl Sync for Isbn10

Blanket Implementations

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> From for T
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]