Enum line_messaging_api_rust::actions::ActionType[][src]

pub enum ActionType {
    Message {
        text: String,
    },
    Uri {
        uri: String,
    },
    Postback {
        data: String,
        display_text: String,
        text: String,
    },
    Datetimepicker {
        data: String,
        mode: String,
        initial: String,
        max: String,
        min: String,
    },
    Empty,
}

Variants

Fields of Message

Fields of Uri

Fields of Postback

Fields of Datetimepicker

Trait Implementations

impl Clone for ActionType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for ActionType

impl Sync for ActionType