mirror of
https://github.com/guilhermewerner/mini-redis
synced 2025-06-19 16:34:55 +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>),
|
|
}
|