1use serde::Serialize; 2 3#[derive(Serialize)] 4#[serde(rename_all = "camelCase")] 5pub struct Grid3D {} 6 7impl Grid3D { 8 pub fn new() -> Self { 9 Self {} 10 } 11}