Trait metainfo::forward::Forward[][src]

pub trait Forward {
Show 16 methods fn get_persistent<K: AsRef<str>>(&self, key: K) -> Option<&str>;
fn get_transient<K: AsRef<str>>(&self, key: K) -> Option<&str>;
fn get_upstream<K: AsRef<str>>(&self, key: K) -> Option<&str>;
fn get_all_persistents(&self) -> Option<&Vec<Arc<KV>>>;
fn get_all_transients(&self) -> Option<&Vec<Arc<KV>>>;
fn get_all_upstreams(&self) -> Option<&Vec<Arc<KV>>>;
fn set_persistent<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V
    );
fn set_transient<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V
    );
fn set_upstream<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V
    );
fn strip_rpc_prefix_and_set_persistent<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V
    );
fn strip_rpc_prefix_and_set_upstream<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V
    );
fn strip_http_prefix_and_set_persistent<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V
    );
fn strip_http_prefix_and_set_upstream<K: Into<Cow<'static, str>>, V: Into<Cow<'static, str>>>(
        &mut self,
        key: K,
        value: V
    );
fn del_persistent<K: AsRef<str>>(&mut self, key: K);
fn del_transient<K: AsRef<str>>(&mut self, key: K);
fn del_upstream<K: AsRef<str>>(&mut self, key: K);
}

Required methods

Implementors