pub trait IMsgContentValue {
    // Required method
    fn fmt_value(&self, template: &str) -> String;
}

Required Methods§

source

fn fmt_value(&self, template: &str) -> String

Форматирование значения c заданным форматом

Implementations on Foreign Types§

source§

impl IMsgContentValue for bool

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for f32

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for f64

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for i8

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for i16

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for i32

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for i64

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for i128

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for isize

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for u8

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for u16

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for u32

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for u64

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for u128

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for ()

source§

fn fmt_value(&self, _template: &str) -> String

source§

impl IMsgContentValue for usize

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for String

source§

fn fmt_value(&self, template: &str) -> String

source§

impl IMsgContentValue for Duration

source§

fn fmt_value(&self, _template: &str) -> String

Implementors§