litrs/bool/
mod.rs
1use std::fmt;
2
3use crate::{ParseError, err::{perr, ParseErrorKind::*}};
4
5
6#[derive(Debug, Clone, Copy, PartialEq, Eq)]
10pub enum BoolLit {
11 False,
12 True,
13}
14
15impl BoolLit {
16 pub fn parse(s: &str) -> Result<Self, ParseError> {
19 match s {
20 "false" => Ok(Self::False),
21 "true" => Ok(Self::True),
22 _ => Err(perr(None, InvalidLiteral)),
23 }
24 }
25
26 pub fn value(self) -> bool {
28 match self {
29 Self::False => false,
30 Self::True => true,
31 }
32 }
33
34 pub fn as_str(&self) -> &'static str {
36 match self {
37 Self::False => "false",
38 Self::True => "true",
39 }
40 }
41}
42
43impl fmt::Display for BoolLit {
44 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
45 f.pad(self.as_str())
46 }
47}
48
49
50#[cfg(test)]
51mod tests;