hecto/src/document.rs

6 lines
79 B
Rust
Raw Normal View History

2021-03-08 10:21:06 -05:00
use crate::Row;
#[derive(Default)]
pub struct Document {
rows: Vec<Row>,
}