remove unused mut

This commit is contained in:
OMGeeky
2023-04-15 15:26:26 +02:00
parent fce811dc61
commit 655df48ba3

View File

@@ -214,7 +214,7 @@ pub trait BigQueryTable: BigQueryTableBase {
}
/// proxy for update
async fn save(&mut self) -> Result<()>
async fn save(&self) -> Result<()>
where
Self: Sized + Clone + Send + Sync + Debug + Default,
{