nixide/nixide-sys/src/exts/expr.rs
2026-04-02 09:53:00 +10:00

8 lines
207 B
Rust

use std::fmt::{Debug, Display, Formatter, Result as FmtResult};
impl Display for crate::ValueType {
#[inline]
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
Debug::fmt(self, f)
}
}