[][src]Trait redis_module::NextArg

pub trait NextArg: Iterator {
    fn next_string(&mut self) -> Result<String, RedisError>;
fn next_i64(&mut self) -> Result<i64, RedisError>;
fn next_u64(&mut self) -> Result<u64, RedisError>;
fn next_f64(&mut self) -> Result<f64, RedisError>;
fn done(&mut self) -> Result<(), RedisError>; }

Required methods

fn next_string(&mut self) -> Result<String, RedisError>

fn next_i64(&mut self) -> Result<i64, RedisError>

fn next_u64(&mut self) -> Result<u64, RedisError>

fn next_f64(&mut self) -> Result<f64, RedisError>

fn done(&mut self) -> Result<(), RedisError>

Loading content...

Implementors

impl<T: Iterator<Item = String>> NextArg for T[src]

fn done(&mut self) -> Result<(), RedisError>[src]

Return an error if there are any more arguments

Loading content...