From eecb1b3679dde06d021755c7ada924ec3b10d495 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Fri, 16 Aug 2024 16:59:43 -0700 Subject: [PATCH] cloud: spaces --- rbx_asset/src/cloud.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rbx_asset/src/cloud.rs b/rbx_asset/src/cloud.rs index a14ee6c..15e79e7 100644 --- a/rbx_asset/src/cloud.rs +++ b/rbx_asset/src/cloud.rs @@ -82,7 +82,7 @@ pub enum UpdateError{ Reqwest(reqwest::Error), } impl std::fmt::Display for UpdateError{ - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + fn fmt(&self,f:&mut std::fmt::Formatter<'_>)->std::fmt::Result{ write!(f,"{self:?}") } } @@ -145,7 +145,7 @@ pub enum GetError{ IO(std::io::Error) } impl std::fmt::Display for GetError{ - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + fn fmt(&self,f:&mut std::fmt::Formatter<'_>)->std::fmt::Result{ write!(f,"{self:?}") } } @@ -180,7 +180,7 @@ pub enum AssetVersionsError{ Reqwest(reqwest::Error), } impl std::fmt::Display for AssetVersionsError{ - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + fn fmt(&self,f:&mut std::fmt::Formatter<'_>)->std::fmt::Result{ write!(f,"{self:?}") } } @@ -215,7 +215,7 @@ pub enum InventoryPageError{ Reqwest(reqwest::Error), } impl std::fmt::Display for InventoryPageError{ - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + fn fmt(&self,f:&mut std::fmt::Formatter<'_>)->std::fmt::Result{ write!(f,"{self:?}") } }