From a74cf76b2b20444d3c503894f8c6ab7a5d901670 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Sun, 14 May 2023 23:38:30 +0200 Subject: [PATCH] chore: please clippy and rustfmt --- affluences-api/src/lib.rs | 20 ++++++++++++++++--- .../src/models/hh_mm_time_format.rs | 2 +- affluences-api/src/models/site_data.rs | 6 +++--- src/commands.rs | 6 +++--- 4 files changed, 24 insertions(+), 10 deletions(-) diff --git a/affluences-api/src/lib.rs b/affluences-api/src/lib.rs index 3e11326..7994b0d 100644 --- a/affluences-api/src/lib.rs +++ b/affluences-api/src/lib.rs @@ -22,11 +22,19 @@ impl AffluencesClient { pub async fn search(&self, query: String) -> reqwest::Result { let url = "https://api.affluences.com/app/v3/sites"; - let body = SiteSearch{ - search_query: query + let body = SiteSearch { + search_query: query, }; - Ok(self.client.post(url).json(&body).send().await?.json::>().await?.data) + Ok(self + .client + .post(url) + .json(&body) + .send() + .await? + .json::>() + .await? + .data) } pub async fn available( @@ -81,3 +89,9 @@ impl AffluencesClient { .await } } + +impl Default for AffluencesClient { + fn default() -> Self { + AffluencesClient::new() + } +} diff --git a/affluences-api/src/models/hh_mm_time_format.rs b/affluences-api/src/models/hh_mm_time_format.rs index 7d535f6..8858d4f 100644 --- a/affluences-api/src/models/hh_mm_time_format.rs +++ b/affluences-api/src/models/hh_mm_time_format.rs @@ -1,7 +1,7 @@ use chrono::NaiveTime; use serde::{self, Deserialize, Deserializer, Serializer}; -const FORMAT: &'static str = "%H:%M"; +const FORMAT: &str = "%H:%M"; pub fn serialize(time: &NaiveTime, serializer: S) -> Result where diff --git a/affluences-api/src/models/site_data.rs b/affluences-api/src/models/site_data.rs index c2a7d98..68f5efb 100644 --- a/affluences-api/src/models/site_data.rs +++ b/affluences-api/src/models/site_data.rs @@ -1,4 +1,4 @@ -use serde::{Serialize, Deserialize}; +use serde::{Deserialize, Serialize}; #[derive(Serialize, Deserialize, Debug)] pub struct Data { @@ -107,12 +107,12 @@ pub struct SiteData { #[derive(Serialize, Debug)] pub struct SiteSearch { - pub search_query: String + pub search_query: String, } #[derive(Serialize, Deserialize, Debug)] pub struct SiteSearchResponse { pub page: u32, pub max_size: u32, - pub results: Vec + pub results: Vec, } diff --git a/src/commands.rs b/src/commands.rs index 6a2c548..b955679 100644 --- a/src/commands.rs +++ b/src/commands.rs @@ -4,7 +4,7 @@ use chrono::{Duration, NaiveDate}; use uuid::{uuid, Uuid}; const STERRE_BIB_ID: Uuid = uuid!("4737e57a-ee05-4f7b-901a-7bb541eeb297"); -const TIME_FORMAT: &'static str = "%H:%M"; +const TIME_FORMAT: &str = "%H:%M"; /// Show this help menu #[poise::command(prefix_command, track_edits, slash_command)] @@ -90,7 +90,7 @@ pub async fn available(ctx: Context<'_>, date: NaiveDate) -> Result<(), Error> { let mut fields: Vec<(String, String, bool)> = Default::default(); for resource in &resources { - if resource.hours.len() == 0 { + if resource.hours.is_empty() { fields.push(( resource.resource_name.clone(), "Nothing available.".to_string(), @@ -158,5 +158,5 @@ pub async fn available(ctx: Context<'_>, date: NaiveDate) -> Result<(), Error> { // ctx: Context<'_>, // date: NaiveDate, // ) -> Result<(), Error> { - + // }