add sys extensions
This commit is contained in:
parent
70ce1b2b9e
commit
54511d9c23
8 changed files with 62 additions and 0 deletions
8
nixide-sys/src/exts/expr.rs
Normal file
8
nixide-sys/src/exts/expr.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
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)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue