Generate Youtube-Like IDs with Rust
```rust use alphaid::AlphaId;
let alphaid = AlphaId::
Specifies the minimum length of the encoded result.
```rust use alphaid::AlphaId;
let alphaid = AlphaId::
let alphaid = AlphaId::
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));