Struct slack_api::im::HistoryResponse[][src]

pub struct HistoryResponse {
    pub has_more: Option<bool>,
    pub latest: Option<String>,
    pub messages: Option<Vec<Message>>,
    // some fields omitted
}

Fields

Trait Implementations

impl Clone for HistoryResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for HistoryResponse
[src]

Formats the value using the given formatter. Read more

impl<E: Error> Into<Result<HistoryResponse, HistoryError<E>>> for HistoryResponse
[src]

Performs the conversion.

Auto Trait Implementations