Enum elastiql::bulk::Action[][src]

pub enum Action<T> {
    Create(Item<T>),
    Index(Item<T>),
    Update(Item<T>),
    Delete(Item<T>),
}
Expand description

The result of a bulk operation.

Variants

Create(Item<T>)

The result from performing a bulk Create operation.

Index(Item<T>)

The result from performing a bulk Index operation.

Update(Item<T>)

The result from performing a bulk Update operation.

Delete(Item<T>)

The result from performing a bulk Delete operation.

Trait Implementations

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.