just 1.51.0

🤖 Just a command runner
Documentation
use super::*;

pub(crate) struct Enclosure<T: Display>(T);

impl<T: Display> Enclosure<T> {
  pub(crate) fn tick(value: T) -> Self {
    Self(value)
  }
}

impl<T: Display> Display for Enclosure<T> {
  fn fmt(&self, f: &mut Formatter) -> fmt::Result {
    write!(f, "`{}`", self.0)
  }
}

#[cfg(test)]
mod tests {
  use super::*;

  #[test]
  fn tick() {
    assert_eq!(Enclosure::tick("foo").to_string(), "`foo`");
  }
}