From 314098f68a56a092c4d0065d5459f058d97a3bef Mon Sep 17 00:00:00 2001 From: Tom Date: Wed, 17 Aug 2022 23:03:47 +0200 Subject: [PATCH] Although not used (will likely be removed soon) updated version for completeness sake and since i already did it anyway. --- src/commands/schedule.rs | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/commands/schedule.rs b/src/commands/schedule.rs index 9239a33..8e8606e 100644 --- a/src/commands/schedule.rs +++ b/src/commands/schedule.rs @@ -130,7 +130,7 @@ async fn get_api_events() -> Vec { .get("token") .expect("Config error, please set the morningstreams[token] value") .clone() - .into_str() + .into_string() .expect("Config error, please make sure morningstreams[token] is a string"); let client = reqwest::Client::new(); let req = client @@ -208,7 +208,7 @@ async fn get_f1_events() -> Option> { .get("token") .expect("Config error, please set the morningstreams[token] value") .clone() - .into_str() + .into_string() .expect("Config error, please make sure morningstreams[token] is a string"); let client = reqwest::Client::new(); let req = client @@ -337,15 +337,19 @@ fn build_embed<'a>(event: Event, e: &'a mut CreateEmbed) -> &'a mut CreateEmbed e } -#[allow(dead_code)] -async fn autocomplete_series(_ctx: Context<'_>, partial: String) -> impl Stream { +async fn autocomplete_series<'a>( + _ctx: Context<'_>, + partial: &'a str, +) -> impl Stream + 'a { futures::stream::iter(&["Formula 1", "MotoGP", "IndyCar"]) .filter(move |name| futures::future::ready(name.starts_with(&partial))) .map(|name| name.to_string()) } -#[allow(dead_code)] -async fn autocomplete_session(_ctx: Context<'_>, partial: String) -> impl Stream { +async fn autocomplete_session<'a>( + _ctx: Context<'_>, + partial: &'a str, +) -> impl Stream + 'a { futures::stream::iter(&[ "Race", "Qualifying",