Struct slack_hook::SlackUserLink[][src]

pub struct SlackUserLink {
    pub uid: String,
}

Representation of a user id link sent in slack

Cannot do @UGUID|handle links using SlackLink in the future due to https://api.slack.com/changelog/2017-09-the-one-about-usernames

Fields

User ID (U1231232123) style

Methods

impl SlackUserLink
[src]

Construct new SlackUserLink with a string slice

Trait Implementations

impl Debug for SlackUserLink
[src]

Formats the value using the given formatter. Read more

impl Clone for SlackUserLink
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for SlackUserLink
[src]

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

This method tests for !=.

impl PartialOrd for SlackUserLink
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Display for SlackUserLink
[src]

Formats the value using the given formatter. Read more

impl Serialize for SlackUserLink
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations