[][src]Trait icbiadb::prelude::BytesSearch

pub trait BytesSearch {
    fn starts_with<S: AsRef<str>>(&self, key_part: S) -> Vec<Record>;
fn ends_with<S: AsRef<str>>(&self, key_part: S) -> Vec<Record>;
fn contains<S: AsRef<str>>(&self, key_part: S) -> Vec<Record>; }

Required methods

fn starts_with<S: AsRef<str>>(&self, key_part: S) -> Vec<Record>

fn ends_with<S: AsRef<str>>(&self, key_part: S) -> Vec<Record>

fn contains<S: AsRef<str>>(&self, key_part: S) -> Vec<Record>

Loading content...

Implementors

impl BytesSearch for Db[src]

Loading content...