OptionsBuilder

Struct OptionsBuilder 

Source
pub struct OptionsBuilder<'a> { /* private fields */ }

Implementations§

Source§

impl<'a> OptionsBuilder<'a>

Source

pub const fn separator(self, separator: &'a str) -> Self

Set the separator to use between words

§Example

let options = Options::builder()
    .separator("-")
    .build();
Source

pub const fn capitalize(self, capitalize: bool) -> Self

Set whether to capitalize each word

§Example

let options = Options::builder()
    .capitalize(true)
    .build();
Source

pub const fn add_adverb(self, add_adverb: bool) -> Self

Set whether to add an adverb to the end of the identifier

§Example

let options = Options::builder()
    .add_adverb(true)
    .build();
Source

pub const fn adjective_count(self, adjective_count: usize) -> Self

Set the number of adjectives to use

§Example

let options = Options::builder()
    .adjective_count(2)
    .build();
Source

pub const fn build(self) -> Options<'a>

Trait Implementations§

Source§

impl<'a> Debug for OptionsBuilder<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for OptionsBuilder<'_>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for OptionsBuilder<'a>

§

impl<'a> RefUnwindSafe for OptionsBuilder<'a>

§

impl<'a> Send for OptionsBuilder<'a>

§

impl<'a> Sync for OptionsBuilder<'a>

§

impl<'a> Unpin for OptionsBuilder<'a>

§

impl<'a> UnwindSafe for OptionsBuilder<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.