pub trait PushPrintfArg: SupportedPrintfArg + Sized {
// Required method
fn _push_printf_arg(self, _holder: &'static str);
// Provided method
fn push_printf_arg(self) { ... }
}Required Methods§
Sourcefn _push_printf_arg(self, _holder: &'static str)
fn _push_printf_arg(self, _holder: &'static str)
Push an argument to the printf function.
Provided Methods§
fn push_printf_arg(self)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.