Struct slack::Team []

pub struct Team {
    pub id: String,
    pub name: String,
    pub email_domain: String,
    pub domain: String,
    pub msg_edit_window_mins: i64,
    pub over_storage_limit: bool,
    pub plan: String,
}

The Team object as found in the rtm.start response.

Fields

id: String name: String email_domain: String domain: String msg_edit_window_mins: i64 over_storage_limit: bool plan: String

Trait Implementations

impl Decodable for Team

fn decode<__D>(__arg_0: &mut __D) -> Result<Team, __D::Error> where __D: Decoder

impl Debug for Team

fn fmt(&self, __arg_0: &mut Formatter) -> Result<()Error>

Formats the value using the given formatter.

impl Clone for Team

fn clone(&self) -> Team

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