usecrate::time_zone::request::Request;usecrate::types::Language;// -----------------------------------------------------------------------------
impl<'a>Request<'a>{/// Adds the language parameter to the Time Zone API query.
////// ## Arguments
////// * `language` ‧ The language that Google's response should be presented
/// in.
////// ## Example
////// * Set Google's response to the French language:
/// ```rust
/// .with_language(Language::French)
/// ```
pubfnwith_language(&'amutself, language: Language)->&'amutSelf{// Set language in Request struct.
self.language =Some(language);// Return modified Request struct to caller.
self}// fn
}// impl