1 2 3 4 5 6 7
use crate::core::library::feeditem::FeedItem; #[derive(Clone)] pub struct FeedCategory { pub title: String, pub feeds: Vec<FeedItem>, }