use Value;
use Cow;
/// A value that can be turned into a `Cow<'a, Value>`. This is primarily useful
/// because there is not an `impl Into<Cow<'a, Value>>` built-in for
/// `redis::Value` and `&'a redis::Value`. This allows `from_redis_value` to take
/// either one of those.