Hello, I want to shrink my firmware size as much as possible, and I wonder if in this code, both constants have the same size or not: ```rust #[derive(Copy, Clone)] pub enum Foo { Nothing, Data([u32; 32]), } pub const FOOS_1: [Foo; 32] = [Foo::Nothing; 32]; pub const FOOS_2: [&Foo; 32] = [&Foo::Nothing; 32];