pub trait IntoRespString {
// Required method
fn into_resp_string(self) -> RespValue;
}Expand description
A specific trait to convert into a RespValue::BulkString
Required Methods§
fn into_resp_string(self) -> RespValue
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".