nixide/nixide-sys/src/exts/expr.rs

9 lines
207 B
Rust
Raw Normal View History

2026-04-02 09:53:00 +10:00
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)
}
}