pub trait IntoRespString {
    // Required method
    fn into_resp_string(self) -> RespValue;
}
Expand description

A specific trait to convert into a RespValue::BulkString

Required Methods§

Implementations on Foreign Types§

source§

impl<'a> IntoRespString for &'a [u8]

source§

impl<'a> IntoRespString for &'a String

source§

impl<'a> IntoRespString for &'a str

source§

impl IntoRespString for Vec<u8>

source§

impl IntoRespString for Arc<str>

source§

impl IntoRespString for String

Implementors§