Change `struct` to `enum` whenever possible that doesn't require `Foo.init()`. ### Example ```diff -struct Foo { +enum Foo { static let bar = Bar() } ```