Module kind

Source
Expand description

Module representing the kind of an entry.

§Examples

use timelog::entry::EntryKind;

    let ek = EntryKind::new(Some('!'));
    println!("Is ignored: {}", ek.is_ignored());

    let ek = EntryKind::from_entry_line("2022-06-20 21:15:34^+happening Something");
    println!("Is event: {}", ek.is_event());

§Description

Objects of this type represent the kind of an Entry.

Enums§

EntryKind
Enumeration of different kinds of task entries