Enum message_format::Value
[−]
[src]
pub enum Value<'a> {
Number(i64),
Str(&'a str),
}A wrapper around a value, used with Args so that a MessagePart
can access the original value when necessary.
These are not typically created directly, but are created automatically
via the standard library's From trait when creating Args.
Variants
Number | Wrap an | |
Str | Wrap an |