Trait jammdb::ToBuckets

source ·
pub trait ToBuckets<'b, 'tx: 'b>: Iterator<Item = Data<'b, 'tx>> + Sized {
    // Required method
    fn to_buckets(self) -> Buckets<'b, 'tx, Self> ;
}

Required Methods§

source

fn to_buckets(self) -> Buckets<'b, 'tx, Self>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'b, 'tx: 'b> ToBuckets<'b, 'tx> for Cursor<'b, 'tx>