Enum line_messaging_api_rust::events::ReplyableEventType[][src]

pub enum ReplyableEventType {
    Message {
        message: LineMessage,
    },
    Postback {
        postback: Value,
    },
    Beacon {
        beacon: Beacon,
    },
    AccountLink {
        link: Link,
    },
    Follow,
    Join,
}

Variants

Fields of Message

Fields of Postback

Fields of Beacon

Fields of AccountLink

Trait Implementations

impl Clone for ReplyableEventType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations