pub struct Custom { /* private fields */ }
Expand description
Custom length and kind of random number
Generate random number by custom its length and kind
let random = gen_random::Custom::new(5, gen_random::CharSetKind::Number).generate();
assert_eq!(random, "12345".to_string())
Immutably borrows from an owned value.
Read more
Mutably borrows from an owned value.
Read more
Returns the argument unchanged.
Calls U::from(self)
.
That is, this conversion is whatever the implementation of
From<T> for U
chooses to do.
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.