[][src]Crate ulid_generator_rs

About ULID

ULID is Universally Unique Lexicographically Sortable Identifier.

For more information, please check the following specifications.

Usage

use ulid_generator_rs::{ULIDGenerator, ULID};

let ulid: ULID = ULIDGenerator::new().generate().unwrap();
let str: String = ulid.to_string();

Alternative crates

  • https://github.com/dylanhart/ulid-rs
  • https://github.com/huxi/rusty_ulid
  • https://github.com/suyash/ulid-rs

Structs

ULID

This struct is ULID.

ULIDGenerator

This is the ULID Generator.

Enums

Endian

This enum is the endian types.

ULIDError

The error types of ULID