Trait IntoRespString

Source
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 IntoRespString for String

Source§

impl IntoRespString for Arc<str>

Source§

impl IntoRespString for Vec<u8>

Source§

impl<'a> IntoRespString for &'a str

Source§

impl<'a> IntoRespString for &'a String

Source§

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

Implementors§