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

pub enum Index {
    Primary(PrimaryIndex),
    Hash(HashIndex),
    SkipList(SkipListIndex),
    Persistent(PersistentIndex),
    Geo1(Geo1Index),
    Geo2(Geo2Index),
    Fulltext(FulltextIndex),
    Edge(EdgeIndex),
}

Variants

Trait Implementations

impl Debug for Index
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Index
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Index
[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 IndexDetails for Index
[src]

[src]

[src]

[src]

[src]

[src]

impl From<PrimaryIndex> for Index
[src]

[src]

Performs the conversion.

impl From<HashIndex> for Index
[src]

[src]

Performs the conversion.

impl From<SkipListIndex> for Index
[src]

[src]

Performs the conversion.

impl From<PersistentIndex> for Index
[src]

[src]

Performs the conversion.

impl From<Geo1Index> for Index
[src]

[src]

Performs the conversion.

impl From<Geo2Index> for Index
[src]

[src]

Performs the conversion.

impl From<FulltextIndex> for Index
[src]

[src]

Performs the conversion.

impl From<EdgeIndex> for Index
[src]

[src]

Performs the conversion.

impl<'de> Deserialize<'de> for Index
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for Index

impl Sync for Index