From de342899790247e850b8b67de28f2656e29a37dd Mon Sep 17 00:00:00 2001 From: yggverse Date: Sun, 13 Jul 2025 00:36:59 +0300 Subject: [PATCH] add comments --- src/rss.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/rss.rs b/src/rss.rs index 8a1de14..56dec6d 100644 --- a/src/rss.rs +++ b/src/rss.rs @@ -4,9 +4,13 @@ use url::Url; /// Export crawl index to the RSS file pub struct Rss { + /// Resulting (public) file in the XML format file: File, + /// Shared directory for the feed `file` and its `tmp` buffer file target: PathBuf, + /// Creates temporary file to exclude feed format damage on update tmp: PathBuf, + /// Trackers source for every item in channel trackers: Option>, }