Trait EnumConfigurationValue

Source
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>)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§