#[non_exhaustive]
pub enum TemplateKind {
    New,
    FromClipboardYaml,
    FromClipboard,
    FromTextFile,
    AnnotateFile,
    SyncFilename,
    None,
}
Expand description

Each workflow is related to one TemplateKind, which relates to one content template and one filename template.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

New

Templates used when Tp-Note is invoked with a directory path.

§

FromClipboardYaml

Templates used when the clipboard contains a text with a YAML header.

§

FromClipboard

Templates used when the clipboard contains a text without header.

§

FromTextFile

Templates used when Tp-Note is invoked with a path pointing to a text file that does not contain a YAML header.

§

AnnotateFile

Templates used when Tp-Note is invoked with a path pointing to a non text file.

§

SyncFilename

Templates used when Tp-Note is invoked with a path pointing to a Tp-Note text file with a valid YAML header (with a title: field).

§

None

No templates are used, but the file is still parsed in order to render it later to HTML (c.f. <Note>.render_content_to_html() and <Note>.export_html()).

Implementations§

Constructor encoding the logic under what circumstances what template should be used.

Returns the content template string as it is defined in the configuration file. Panics for TemplateKind::SyncFilename and TemplateKind::None.

Returns the content template variable name as it is used in the configuration file.

Returns the file template string as it is defined in the configuration file. Panics for TemplateKind::None.

Returns the content template variable name as it is used in the configuration file.

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
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used by ==.
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

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
Compare self to key and return true if they are equal.

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.