Struct cpf::Cpf[][src]

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

A valid CPF number.

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

use cpf::Cpf;

let cpf1 = "385.211.390-39".parse::<Cpf>()?;
let cpf2 = Cpf::try_from([3, 8, 5, 2, 1, 1, 3, 9, 0, 3, 9])?;
assert_eq!(cpf1, cpf2);

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

use cpf::Cpf;

let cpf = "000.000.000-00".parse::<Cpf>();
assert!(cpf.is_err());

let cpf = "385.211.390-39".parse::<Cpf>().unwrap();
assert!(cpf::valid(cpf));

Implementations

The Cpf digits.

use cpf::Cpf;

let cpf: Cpf = "385.211.390-39".parse()?;
assert_eq!(cpf.digits(), [3, 8, 5, 2, 1, 1, 3, 9, 0, 3, 9]);

Returns the (unformatted) CPF number.

use cpf::Cpf;

let cpf: Cpf = "385.211.390-39".parse()?;
assert_eq!(cpf.as_str(), "38521139039");

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

use cpf::Cpf;

let cpf: Cpf = "5120101".parse()?;
assert_eq!(cpf.as_str(), "00005120101");

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.