pub struct PageArguments<'a>(pub HashMap<UniCase<&'a str>, (ArgumentValue<'a>, &'a str)>);Expand description
Represents the set of arguments for a page.
Within a Wikidot-compatible URL, this is the optional portion after a slug. For example:
/scp-1000– No page arguments./scp-1000/noredirect/true– Page arguments are/noredirect/true./scp-1000/noredirect/true/norender/true– Page arguments are/norender/true/noredirect/true.
When passed as a string input, the leading / character is optional.
Tuple Fields§
§0: HashMap<UniCase<&'a str>, (ArgumentValue<'a>, &'a str)>Implementations§
Source§impl<'a> PageArguments<'a>
impl<'a> PageArguments<'a>
Sourcepub fn parse(path: &'a str, schema: ArgumentSchema<'_>) -> Self
pub fn parse(path: &'a str, schema: ArgumentSchema<'_>) -> Self
Parse out Wikidot arguments.
This algorithm is compatible with the /KEY/true format,
but also allows a lone /KEY for options which are “innately valued”,
such as norender or edit, where adding a /true is not very useful.
This means that for /KEY1/KEY2/VALUE where value is not a string
(i.e. null, boolean, or integer),
If there are duplicate keys, the most recent one takes precedence.
Trait Implementations§
Source§impl<'a> Clone for PageArguments<'a>
impl<'a> Clone for PageArguments<'a>
Source§fn clone(&self) -> PageArguments<'a>
fn clone(&self) -> PageArguments<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for PageArguments<'a>
impl<'a> Debug for PageArguments<'a>
Source§impl<'a> PartialEq for PageArguments<'a>
impl<'a> PartialEq for PageArguments<'a>
impl<'a> Eq for PageArguments<'a>
impl<'a> StructuralPartialEq for PageArguments<'a>
Auto Trait Implementations§
impl<'a> Freeze for PageArguments<'a>
impl<'a> RefUnwindSafe for PageArguments<'a>
impl<'a> Send for PageArguments<'a>
impl<'a> Sync for PageArguments<'a>
impl<'a> Unpin for PageArguments<'a>
impl<'a> UnwindSafe for PageArguments<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more