pub trait FormatterTrait: FormatterTraitConst {
    // Required method
    fn as_raw_mut_Formatter(&mut self) -> *mut c_void;

    // Provided methods
    fn set16f_precision(&mut self, p: i32) -> Result<()> { ... }
    fn set32f_precision(&mut self, p: i32) -> Result<()> { ... }
    fn set64f_precision(&mut self, p: i32) -> Result<()> { ... }
    fn set_multiline(&mut self, ml: bool) -> Result<()> { ... }
}
Expand description

Mutable methods for core::Formatter

Required Methods§

Provided Methods§

Implementors§