Type Alias config_it::ArchiveCategoryRule
source · pub type ArchiveCategoryRule<'a> = CategoryRule<'a>;Aliased Type§
enum ArchiveCategoryRule<'a> {
Prefix(&'a str),
Suffix(&'a str),
Wrap(&'a str, &'a str),
}Variants§
Prefix(&'a str)
Categories are signified by prefixing their names with the specified token.
Suffix(&'a str)
Categories are signified by appending their names with the specified token.
Wrap(&'a str, &'a str)
Categories are signified by wrapping their names between the specified start and end tokens.