mirror of
https://github.com/bitcoinresearchkit/brk.git
synced 2026-05-03 02:50:00 -07:00
9 lines
183 B
Rust
9 lines
183 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
pub struct Chunk {
|
|
pub id: usize,
|
|
pub previous: Option<String>,
|
|
pub next: Option<String>,
|
|
}
|