Struct slack_hook::Field [] [src]

pub struct Field {
    pub title: String,
    pub value: SlackText,
    pub short: Option<bool>,
}

Fields are defined as an array, and hashes contained within it will be displayed in a table inside the message attachment.

Fields

Shown as a bold heading above the value text. It cannot contain markup and will be escaped for you.

The text value of the field. It may contain standard message markup and must be escaped as normal. May be multi-line.

An optional flag indicating whether the value is short enough to be displayed side-by-side with other values.

Methods

impl Field
[src]

Construct a new field

Trait Implementations

impl Debug for Field
[src]

Formats the value using the given formatter.