diff --git a/crates/mun_abi/src/autogen_impl.rs b/crates/mun_abi/src/autogen_impl.rs index 5ce5100e8..4223e464d 100644 --- a/crates/mun_abi/src/autogen_impl.rs +++ b/crates/mun_abi/src/autogen_impl.rs @@ -1,9 +1,10 @@ use crate::prelude::*; use std::ffi::{c_void, CStr}; +use std::fmt::Formatter; use std::marker::{Send, Sync}; -use std::slice; use std::str; +use std::{fmt, slice}; impl TypeInfo { /// Returns the type's name. @@ -12,6 +13,12 @@ impl TypeInfo { } } +impl fmt::Display for TypeInfo { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + write!(f, "{}", self.name()) + } +} + impl PartialEq for TypeInfo { fn eq(&self, other: &Self) -> bool { self.guid == other.guid @@ -47,6 +54,23 @@ impl FunctionSignature { } } +impl fmt::Display for FunctionSignature { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + write!(f, "fn {}(", self.name())?; + for (i, arg) in self.arg_types().iter().enumerate() { + if i > 0 { + write!(f, ", ")?; + } + write!(f, "{}", arg)?; + } + write!(f, ")")?; + if let Some(ret_type) = self.return_type() { + write!(f, ":{}", ret_type)? + } + Ok(()) + } +} + unsafe impl Send for FunctionSignature {} unsafe impl Sync for FunctionSignature {} @@ -71,6 +95,12 @@ impl StructInfo { } } +impl fmt::Display for StructInfo { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + write!(f, "{}", self.name()) + } +} + impl ModuleInfo { /// Returns the module's full path. pub fn path(&self) -> &str {