pub trait IsKindHeaderPathProvider {
    fn kindflag_header_location() -> &'static str;
}
Expand description

The IsKindHeaderPathProvider trait provides a function typeflag_header_location() which returns a toml-query path.

This path points to a bool entry in the header of an entry which marks the entry to be an entry of a certain kind.

For example, an “Wiki” entry might contain a true at "wiki.is_entry" in the header. This trait provides "wiki.is_entry".

Required Methods

Implementors