Enum line_messaging_api_rust::sources::LineSourceType[][src]

pub enum LineSourceType {
    User {
        user_id: String,
    },
    Room {
        room_id: String,
        user_id: String,
    },
    Group {
        group_id: String,
        user_id: String,
    },
}

Variants

Fields of User

Fields of Room

Fields of Group

Trait Implementations

impl Debug for LineSourceType
[src]

Formats the value using the given formatter. Read more

impl Clone for LineSourceType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations