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. Read more

impl Clone for Field
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Field
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Field

impl Sync for Field