pub trait MsgMeta {
    // Required methods
    fn ts(&self) -> Timestamp;
    fn source(&self) -> ServiceId;
    fn source_set(&mut self, service_id: ServiceId);
    fn fmt_value(&self, template: &str) -> String;
}

Required Methods§

source

fn ts(&self) -> Timestamp

source

fn source(&self) -> ServiceId

source

fn source_set(&mut self, service_id: ServiceId)

source

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

Возвращает поле value в заданном формате

Implementors§