Enum rincon_client::index::types::NewIndex [] [src]

pub enum NewIndex {
    Hash(NewHashIndex),
    SkipList(NewSkipListIndex),
    Persistent(NewPersistentIndex),
    Geo(NewGeoIndex),
    Fulltext(NewFulltextIndex),
}

Variants

Trait Implementations

impl Debug for NewIndex
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for NewIndex
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for NewIndex
[src]

[src]

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

[src]

This method tests for !=.

impl Serialize for NewIndex
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl From<NewHashIndex> for NewIndex
[src]

[src]

Performs the conversion.

impl From<NewSkipListIndex> for NewIndex
[src]

[src]

Performs the conversion.

impl From<NewPersistentIndex> for NewIndex
[src]

[src]

Performs the conversion.

impl From<NewGeoIndex> for NewIndex
[src]

[src]

Performs the conversion.

impl From<NewFulltextIndex> for NewIndex
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for NewIndex

impl Sync for NewIndex