PushPrintfArg

Trait PushPrintfArg 

Source
pub trait PushPrintfArg: SupportedPrintfArg + Sized {
    // Required method
    fn _push_printf_arg(self, _holder: &'static str);

    // Provided method
    fn push_printf_arg(self) { ... }
}

Required Methods§

Source

fn _push_printf_arg(self, _holder: &'static str)

Push an argument to the printf function.

Provided Methods§

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.

Implementors§

Source§

impl<T: SupportedPrintfArg + Sized> PushPrintfArg for T