Struct upid::Upid

source ·
pub struct Upid(pub u128);
Expand description

A Upid is a unique 128-bit identifier is sortable and has a useful prefix.

It is encoded as a 26 character string using a custom base32 alphabet based on Crockford’s, but with lower-case and prioritising letters over numerals. In the binary, the first 40 bits are a unix timestamp with 256ms precision, the next 64 are random bits, and the last 24 are the prefix and version identifier.

Tuple Fields§

§0: u128

Implementations§

source§

impl Upid

source

pub fn new(prefix: &str) -> Upid

Creates a new Upid with the provided prefix and current time (UTC)

The prefix should only contain lower-case latin alphabet characters.

§Example
use upid::Upid;

let my_upid = Upid::new("user");
source

pub fn from_prefix(prefix: &str) -> Upid

Creates a Upid with the provided prefix and current time (UTC)

The prefix should contain four lower-case latin alphabet characters.

§Example
use upid::Upid;

let my_upid = Upid::from_prefix("user");
source

pub fn from_prefix_and_datetime(prefix: &str, datetime: SystemTime) -> Upid

Creates a new Upid with the given prefix and datetime

The prefix should only contain lower-case latin alphabet characters.

This will take the maximum of the [SystemTime] argument and [SystemTime::UNIX_EPOCH] as earlier times are not valid for a Upid timestamp

§Example
use std::time::{SystemTime, Duration};
use upid::Upid;

let upid = Upid::from_prefix_and_datetime("user", SystemTime::now());
source

pub fn from_prefix_and_milliseconds(prefix: &str, milliseconds: u128) -> Upid

Creates a new Upid with the given prefix and timestamp in millisecons

The prefix should only contain lower-case latin alphabet characters.

§Example
use upid::Upid;

let ms: u128 = 1720568902000;
let upid = Upid::from_prefix_and_milliseconds("user", ms);
source

pub fn from_string(encoded: &str) -> Result<Upid, DecodeError>

Creates a Upid from a Base32 encoded string

§Example
use upid::Upid;

let text = "user_aaccvpp5guht4dts56je5a";
let result = Upid::from_string(text);

assert_eq!(&result.unwrap().to_string(), text);
source

pub fn datetime(&self) -> SystemTime

Gets the datetime of when this Upid was created accurate to around 256ms

§Example
use std::time::{SystemTime, Duration};
use upid::Upid;

let dt = SystemTime::now();
let upid = Upid::from_prefix_and_datetime("user", dt);

assert!(dt + Duration::from_millis(257) >= upid.datetime());
source

pub fn prefix(&self) -> String

Gets the prefix of this upid

§Example
use upid::Upid;

let prefix = "user";
let upid = Upid::from_prefix(prefix);

assert_eq!(upid.prefix(), prefix);
source

pub const fn milliseconds(&self) -> u64

Gets the timestamp section of this upid

§Example
use upid::Upid;

let ms: u128 = 1720568902000;
let upid = Upid::from_prefix_and_milliseconds("user", ms);

assert!(ms - u128::from(upid.milliseconds()) < 257);
source

pub fn to_string(&self) -> String

Creates a Base32 encoded string that represents this Upid

§Example
use upid::Upid;

let text = "user_aaccvpp5guht4dts56je5a";
let upid = Upid::from_string(text).unwrap();

assert_eq!(&upid.to_string(), text);
source

pub const fn from_bytes(bytes: [u8; 16]) -> Upid

Creates a Upid using the provided bytes array.

§Example
use upid::Upid;
let bytes = [0xFF; 16];

let upid = Upid::from_bytes(bytes);
source

pub const fn to_bytes(&self) -> [u8; 16]

Returns the bytes of the Upid in big-endian order.

§Example
use upid::Upid;

let text = "user_aaccvpp5guht4dts56je5a";
let upid = Upid::from_string(text).unwrap();

Trait Implementations§

source§

impl Clone for Upid

source§

fn clone(&self) -> Upid

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Upid

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Upid

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for Upid

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl From<Upid> for String

source§

fn from(upid: Upid) -> String

Converts to this type from the input type.
source§

impl From<Upid> for u128

source§

fn from(upid: Upid) -> u128

Converts to this type from the input type.
source§

impl From<u128> for Upid

source§

fn from(value: u128) -> Upid

Converts to this type from the input type.
source§

impl FromStr for Upid

§

type Err = DecodeError

The associated error which can be returned from parsing.
source§

fn from_str(s: &str) -> Result<Self, Self::Err>

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

impl Hash for Upid

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

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

impl Ord for Upid

source§

fn cmp(&self, other: &Upid) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized + PartialOrd,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for Upid

source§

fn eq(&self, other: &Upid) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for Upid

source§

fn partial_cmp(&self, other: &Upid) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Copy for Upid

source§

impl Eq for Upid

source§

impl StructuralPartialEq for Upid

Auto Trait Implementations§

§

impl Freeze for Upid

§

impl RefUnwindSafe for Upid

§

impl Send for Upid

§

impl Sync for Upid

§

impl Unpin for Upid

§

impl UnwindSafe for Upid

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V