pub trait SingleKey {
    // Required method
    fn key(&self) -> &Vec<u8> ;
}
Expand description

Indicates that a request operates on a single key.

Required Methods§

source

fn key(&self) -> &Vec<u8>

Implementors§