Struct namegen::WordList[][src]

pub struct WordList { /* fields omitted */ }

WList is a simple word-list generator. It's probably not what you came here for, but some name parts are best filled with a word-list. It supports weighted words, so that you can make common words appear more often.

Implementations

impl WordList[src]

pub fn generate(&self, ws: &mut WorkingSet, rng: &mut impl Rng)[src]

Generate a name. You need to provide your own WorkingSet and Rng, which is necessary to save on allocations. A dependent application should use the full name generator interface instead

pub fn learn(&mut self, sample_set: &SampleSet) -> Result<(), LearnError>[src]

Learn learns samples from the sample set. The former state is copied and will be restored upon one of the samples failing to import.

pub fn fix_validation_issues(&mut self)[src]

pub fn validate(&self) -> Result<(), ValidationError>[src]

pub fn new() -> WordList[src]

Trait Implementations

impl Clone for WordList[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,