[][src]Struct hash_ids::HashIdsBuilder

pub struct HashIdsBuilder { /* fields omitted */ }

Builder for a HashIds

Implementations

impl HashIdsBuilder[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 with_alphabet(self, alphabet: &str) -> HashIdsBuilderWithCustomAlphabet[src]

Set the custom alphabet to use for encoding

pub fn finish(self) -> HashIds[src]

Convert the builder to the finished HashIds

Trait Implementations

impl Debug for HashIdsBuilder[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.