pub enum IncludeMethod {
    CurrentDirectory,
    Template,
    Path(PathBuf),
}
Expand description

The root from which relative includes are resolved from during [Document::compile].

CurrentDirectory will try to resolve include paths according from the current working directory.

Template will try to resolve include paths from the location of the template file. If this is the method set when trying to parse a buffer- when using [Document::from_str] for example- every include will be considered unknown as there is no template path to attempt to resolve from.

Path will try to resolve include paths from the owned PathBuf.

Variants

CurrentDirectory

Relative paths are resolved from the current working directory

Template

Relative paths are resolved from the location of the template

Path(PathBuf)

Relative paths are resolved from this path

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.