Struct slack_api::channels::HistoryResponse
[−]
[src]
pub struct HistoryResponse {
pub has_more: Option<bool>,
pub latest: Option<String>,
pub messages: Option<Vec<Message>>,
// some fields omitted
}Fields
has_more: Option<bool>
latest: Option<String>
messages: Option<Vec<Message>>
Trait Implementations
impl Clone for HistoryResponse[src]
fn clone(&self) -> HistoryResponse
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Debug for HistoryResponse[src]
impl<E: Error> Into<Result<HistoryResponse, HistoryError<E>>> for HistoryResponse[src]
fn into(self) -> Result<HistoryResponse, HistoryError<E>>
Performs the conversion.