We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5560d0f commit b0f61c7Copy full SHA for b0f61c7
src/resp/decode.rs
@@ -0,0 +1 @@
1
+// empty file
src/resp/mod.rs
@@ -135,6 +135,12 @@ impl RespMap {
135
}
136
137
138
+impl Default for RespMap {
139
+ fn default() -> Self {
140
+ RespMap::new()
141
+ }
142
+}
143
+
144
impl RespSet {
145
pub fn new(s: impl Into<Vec<RespFrame>>) -> Self {
146
RespSet(s.into())
0 commit comments