pub trait Showable {
// Required method
fn format_show(&self, f: &mut Formatter<'_>) -> Result;
}Expand description
Custom trait for LOGOS Show verb - provides clean, natural output. Primitives display without quotes, collections display with brackets.
Required Methods§
fn format_show(&self, f: &mut Formatter<'_>) -> Result
Implementations on Foreign Types§
Source§impl Showable for LogosInt
The exact compiled integer (i64 fast path, BigInt spill) prints as the
plain number — indistinguishable from an i64 Show.
impl Showable for LogosInt
The exact compiled integer (i64 fast path, BigInt spill) prints as the
plain number — indistinguishable from an i64 Show.