pub trait EnumConfigurationValue: TryFrom<i32, Error = RedisError> + Into<i32> + Clone {
    // Required method
    fn get_options(&self) -> (Vec<String>, Vec<i32>);
}

Required Methods§

source

fn get_options(&self) -> (Vec<String>, Vec<i32>)

Implementors§