1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#[macro_use]
mod macros;

pub mod base;
pub mod html;
#[cfg(feature = "svg")]
pub mod svg;

pub struct SeeDeprecationNoteOrMethodDocForInformation;

#[derive(Copy, Clone)]
pub enum ListElementCreation {
    Clone,
    New,
}

impl ListElementCreation {
    pub fn use_template(&self) -> bool {
        match self {
            Self::Clone => true,
            Self::New => false,
        }
    }
}