[][src]Struct hash_ids::HashIdsBuilderWithCustomAlphabet

pub struct HashIdsBuilderWithCustomAlphabet { /* fields omitted */ }

Same as HashIdsBuilder, but with custom alphabet (which can fail)

Implementations

impl HashIdsBuilderWithCustomAlphabet[src]

pub fn with_salt(self, salt: &str) -> Self[src]

Set the salt (arbitrary string) for the HashIds

pub fn with_min_length(self, min_length: usize) -> Self[src]

Set the minimum length for the encoded string

pub fn finish(self) -> Result<HashIds, Error>[src]

Convert the builder to the finished HashIds

Can fail if the custom alphabet won't work

Trait Implementations

impl Debug for HashIdsBuilderWithCustomAlphabet[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.