1 2 3 4 5 6 7 8 9
pub struct Client { pub token: String, } impl Client { pub fn new(token: String) -> Client { Client { token: token } } }