Struct cnpj::Cnpj[][src]

pub struct Cnpj { /* fields omitted */ }
Expand description

A valid CNPJ number.

Initialize a Cnpj from a &str or an array of digits:

use cnpj::Cnpj;

let cnpj = "96.769.900/0001-77".parse::<Cnpj>()?;
assert_eq!(cnpj.digits(), [9, 6, 7, 6, 9, 9, 0, 0, 0, 0, 0, 1, 7, 7]);

Note that the Cnpj struct can only be initialized after a successfully parse, so it is guaranteed to always be valid.

use cnpj::Cnpj;

let cnpj = "00.000.000/0000-00".parse::<Cnpj>();
assert!(cnpj.is_err());

let cnpj = "96.769.900/0001-77".parse::<Cnpj>().unwrap();
assert!(cnpj::valid(cnpj));

Implementations

The Cnpj digits.

use cnpj::Cnpj;

let cnpj: Cnpj = "96.769.900/0001-77".parse()?;
assert_eq!(cnpj.digits(), [9, 6, 7, 6, 9, 9, 0, 0, 0, 0, 0, 1, 7, 7]);

Returns the (unformatted) CNPJ number.

use cnpj::Cnpj;

let cnpj: Cnpj = "96.769.900/0001-77".parse()?;
assert_eq!(cnpj.as_str(), "96769900000177");

Note that even being unformatted, the number will be padded by zeros.

use cnpj::Cnpj;

let cnpj: Cnpj = "1219900000197".parse()?;
assert_eq!(cnpj.as_str(), "01219900000197");

Trait Implementations

Performs the conversion.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

Feeds this value into the given Hasher. Read more

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

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.