I'm making a module that wants to read/write non-utf8 bytes to Redis. However the RedisKeyWritable read / write function only accept &str and also the higher level call function only accepts strings.
Is there a way to do this currently (without using the raw C bindings) ?
Currently i worked around this by creating my own type and using the set_value / get_value functions.