Trait IntoCow

Source
pub trait IntoCow<'a> {
    // Required method
    fn into_cow(self) -> Cow<'a, Value>;
}
Expand description

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.

Required Methods§

Source

fn into_cow(self) -> Cow<'a, Value>

Implementations on Foreign Types§

Source§

impl IntoCow<'static> for Value

Source§

fn into_cow(self) -> Cow<'static, Value>

Source§

impl<'a> IntoCow<'a> for &'a Value

Source§

fn into_cow(self) -> Cow<'a, Value>

Implementors§