Trait heed::iteration_method::IterationMethod

source ·
pub trait IterationMethod {
    const MOVE_OPERATION: MoveOperation;
}
Expand description

The trait used to define the way iterators behave.

Required Associated Constants§

source

const MOVE_OPERATION: MoveOperation

The internal operation to move the cursor through entries.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl IterationMethod for MoveBetweenKeys

source§

const MOVE_OPERATION: MoveOperation = MoveOperation::NoDup

source§

impl IterationMethod for MoveOnCurrentKeyDuplicates

source§

const MOVE_OPERATION: MoveOperation = MoveOperation::Dup

source§

impl IterationMethod for MoveThroughDuplicateValues

source§

const MOVE_OPERATION: MoveOperation = MoveOperation::Any