[][src]Enum datamuse_api_wrapper::Vocabulary

pub enum Vocabulary {
    English,
    Spanish,
    EnglishWiki,
}

This enum represents the different vocabulary lists which can be used as a source for the requests. There are currently two language options (English or Spanish) and an alternative English option from wikipedia. For more detailed information visit the Datamuse website

Variants

English

The default vocabulary list with 550,000 words

Spanish

The Spanish vocabulary list with 500,000 words

EnglishWiki

The alternative English vocabulary list with 6 million words

Trait Implementations

impl Clone for Vocabulary[src]

impl Copy for Vocabulary[src]

impl Debug for Vocabulary[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> Instrument for T[src]

impl<T> Instrument 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.