Enum insult::Word[][src]

pub enum Word {
    Noun(boolString),
    Ending(String),
    Verb(Verb),
    And,
    Unfinished,
}

Not really a word, more like a substring that makes up a sentence.

Variants

Someone/something, like "your math teacher"

An ending, like ", and you know it's true!"

Something they do, like "farted on"

"and"

When the generator runs out of words, creates "... eh... uhnn..."

Methods

impl Word
[src]

Trait Implementations

impl Debug for Word
[src]

Formats the value using the given formatter. Read more

impl Clone for Word
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Word
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for Word
[src]

Auto Trait Implementations

impl Send for Word

impl Sync for Word