DevTools: Replace camel case variable names (#32726)

* refactor: rename to snake case

* refactor: more renaming

* chore: format

* chore: clean
This commit is contained in:
eri 2024-07-08 13:18:35 +02:00 committed by GitHub
parent b243457ccc
commit 2888193cfe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 363 additions and 323 deletions

View file

@ -14,9 +14,10 @@ use serde::Serialize;
use serde_json::{self, Value};
#[derive(Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ActorDescription {
pub category: &'static str,
pub typeName: &'static str,
pub type_name: &'static str,
pub methods: Vec<Method>,
}