pub struct MintOptions {
pub token_len: usize,
}Expand description
Tuning for mint. Defaults are the product decisions from the design docs; override only with a reason.
Fields§
§token_len: usizeToken length in characters (default 8 ⇒ 58⁸ ≈ 1.3 × 10¹⁴ names).
Trait Implementations§
Source§impl Clone for MintOptions
impl Clone for MintOptions
Source§fn clone(&self) -> MintOptions
fn clone(&self) -> MintOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MintOptions
impl Debug for MintOptions
Auto Trait Implementations§
impl Freeze for MintOptions
impl RefUnwindSafe for MintOptions
impl Send for MintOptions
impl Sync for MintOptions
impl Unpin for MintOptions
impl UnsafeUnpin for MintOptions
impl UnwindSafe for MintOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more