[][src]Trait cw_storage_plus::Prefixer

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

Required methods

pub 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]

Loading content...

Implementors

impl<'a> Prefixer<'a> for PkOwned[src]

impl<'a, T: AsRef<PkOwned>> Prefixer<'a> for T[src]

Loading content...