ALPHAID

Generate Youtube-Like IDs with Rust

Build Status crates.io

Basic Usage

```rust use alphaid::AlphaId;

let alphaid = AlphaId::::new(); asserteq!(alphaid.encode(1350997667), Ok(b"90F7qb".tovec())); assert_eq!(alphaid.decode(b"90F7qb"), Ok(1350997667)); ```

Padding

Specifies the minimum length of the encoded result.

```rust use alphaid::AlphaId;

let alphaid = AlphaId::::new(); asserteq!(alphaid.encode(0), Ok(b"a".tovec())); assert_eq!(alphaid.decode(b"a"), Ok(0));

let alphaid = AlphaId::::builder().pad(5).build(); asserteq!(alphaid.encode(0), Ok(b"aaaab".tovec())); assert_eq!(alphaid.decode(b"aaaab"), Ok(0)); ```

Charaters set

Sets the characters set. Default to abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ-_

rust use alphaid::AlphaId; let alphaid = AlphaId::<u32>::builder().pad(2) .chars("ABCDEFGHIJKLMNOPQRSTUVWXYZ".as_bytes().to_vec()) .build(); assert_eq!(alphaid.encode(0), Ok(b"AB".to_vec())); assert_eq!(alphaid.decode(b"AB"), Ok(0));

Reference

Create Youtube-Like IDs