workshop 1.0.19

A tool for presenting programming workshops
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// Errors generated from this module
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
    /// Error when the language code is not found
    #[error("Invalid language code: {0}")]
    InvalidLanguageCode(String),

    /// Error when the language name is not found
    #[error("Invalid language name: {0}")]
    InvalidLanguageName(String),
}