just 1.53.0

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use super::*;

#[derive(Copy, Clone, Debug, PartialEq, Ord, Eq, PartialOrd)]
pub(crate) enum UnstableFeature {
  ListsSetting,
  UserDefinedFunction,
}

impl Display for UnstableFeature {
  fn fmt(&self, f: &mut Formatter) -> fmt::Result {
    match self {
      Self::ListsSetting => write!(f, "the `lists` setting is currently unstable"),
      Self::UserDefinedFunction => {
        write!(f, "user-defined functions are currently unstable")
      }
    }
  }
}