[][src]Struct fastuuid::Generator

pub struct Generator { /* fields omitted */ }

Methods

impl Generator[src]

pub fn new() -> Generator[src]

pub fn next(&self) -> [u8; 24][src]

pub fn hex128_as_str<'a>(
    &self,
    buffer: &'a mut [u8; 36]
) -> Result<&'a str, Box<dyn Error>>
[src]

pub unsafe fn hex128_as_str_unchecked<'a>(
    &self,
    buffer: &'a mut [u8; 36]
) -> &'a str
[src]

pub unsafe fn hex128_as_string_unchecked(&self) -> String[src]

pub fn hex128_as_string(&self) -> Result<String, Box<dyn Error>>[src]

pub fn is_valid_hex128(uuid: &str) -> bool[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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