[][src]Trait cw_storage_plus::Prefixer

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

Required methods

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

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> Prefixer<'a> for (&'a [u8], &'a [u8])[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...