hecto/src/document.rs

6 lines
79 B
Rust

use crate::Row;
#[derive(Default)]
pub struct Document {
rows: Vec<Row>,
}