//! TODO items found in a single file.
usesuper::todo_item::TodoItem;useserde::{Deserialize, Serialize};/// TODO items found in a single file.
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]pubstructFileResult{/// The file's path, as a display string.
pubpath: String,
/// The TODO items found in the file.
pubitems:Vec<TodoItem>,
}