Trait cw_storage_plus::Prefixer[][src]

pub trait Prefixer<'a> {
    fn prefix(&self) -> Vec<&[u8]>;
}

Required methods

fn prefix(&self) -> Vec<&[u8]>[src]

returns 0 or more namespaces that should length-prefixed and concatenated for range searches

Loading content...

Implementations on Foreign Types

impl<'a> Prefixer<'a> for ()[src]

impl<'a> Prefixer<'a> for &'a [u8][src]

impl<'a, T: Prefixer<'a>, U: Prefixer<'a>> Prefixer<'a> for (T, U)[src]

impl<'a, T: Prefixer<'a>, U: Prefixer<'a>, V: Prefixer<'a>> Prefixer<'a> for (T, U, V)[src]

impl<'a> Prefixer<'a> for &'a str[src]

impl<'a> Prefixer<'a> for Vec<u8>[src]

impl<'a> Prefixer<'a> for &'a Addr[src]

Loading content...

Implementors

Loading content...