Trait serde_redis::IntoCow[][src]

pub trait IntoCow<'a> {
    fn into_cow(self) -> Cow<'a, Value>;
}

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

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

Loading content...

Implementations on Foreign Types

impl<'a> IntoCow<'a> for &'a Value[src]

impl IntoCow<'static> for Value[src]

Loading content...

Implementors

Loading content...