mirror of
https://github.com/guilhermewerner/mini-redis
synced 2025-06-16 15:05:39 +00:00
11 lines
141 B
Rust
11 lines
141 B
Rust
use bytes::Bytes;
|
|
|
|
enum Frame {
|
|
Simple(String),
|
|
Error(String),
|
|
Integer(u64),
|
|
Bulk(Bytes),
|
|
Null,
|
|
Array(Vec<Frame>),
|
|
}
|