Compare the properties of plain links.

This commit is contained in:
Tom Alexander
2023-10-07 02:22:36 -04:00
parent 6973d5a2c0
commit a55694176c
6 changed files with 150 additions and 9 deletions

View File

@@ -104,8 +104,10 @@ pub struct RadioLink<'s> {
#[derive(Debug, PartialEq)]
pub struct PlainLink<'s> {
pub source: &'s str,
pub link_type: &'s str,
pub link_type: LinkType<'s>,
pub path: &'s str,
pub raw_link: &'s str,
pub search_option: Option<&'s str>,
}
#[derive(Debug, PartialEq)]