1 2 3 4 5 6 7 8
use crate::metadata::Metadata; pub struct Post { pub metadata: Metadata, pub index: u8, pub html: String, pub raw: String }