Closed Philipp91 closed 3 years ago
Currently, rust-analyzer complains:
Structure `__lv2_plugin_ports_derive_Ports_PortPointerCache` should have CamelCase name, e.g. `Lv2PluginPortsDerivePortsPortPointerCache`
As of this commit, rust-analyzer will honor allow(non_camel_case_types), so I'm trying to add it here. I have no idea if this actually works though.
allow(non_camel_case_types)
Thanks for the fix, @Philipp91 ! 😄
Currently, rust-analyzer complains:
As of this commit, rust-analyzer will honor
allow(non_camel_case_types)
, so I'm trying to add it here. I have no idea if this actually works though.