From 393d6dda437d848f51efacceb8618b937d9f08f3 Mon Sep 17 00:00:00 2001 From: Mason Reed Date: Tue, 9 Dec 2025 13:24:47 -0500 Subject: [Rust] Impl `Display` for `Symbol` --- rust/src/symbol.rs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'rust/src') diff --git a/rust/src/symbol.rs b/rust/src/symbol.rs index 094aeba7..fac8cae5 100644 --- a/rust/src/symbol.rs +++ b/rust/src/symbol.rs @@ -15,7 +15,7 @@ //! Interfaces for the various kinds of symbols in a binary. use std::fmt; -use std::fmt::Debug; +use std::fmt::{Debug, Display, Formatter}; use std::hash::{Hash, Hasher}; use std::ptr; @@ -349,3 +349,9 @@ impl PartialEq for Symbol { self.handle == other.handle } } + +impl Display for Symbol { + fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { + f.write_str(&self.short_name().to_string_lossy()) + } +} -- cgit v1.3.1