add comment

This commit is contained in:
yggverse 2024-10-12 11:19:32 +03:00
parent 308ada8111
commit 3bba0bbb80

View File

@ -3,7 +3,7 @@ use gtk::glib::{GString, Regex, RegexCompileFlags, RegexMatchFlags, Uri, UriFlag
pub struct Link { pub struct Link {
pub alt: Option<GString>, pub alt: Option<GString>,
pub date: Option<GString>, // @TODO https://docs.gtk.org/glib/struct.Date.html pub date: Option<GString>, // @TODO https://docs.gtk.org/glib/struct.Date.html
pub is_external: Option<bool>, pub is_external: Option<bool>, // on to_base option provided
pub uri: Uri, pub uri: Uri,
} }