From b5db753cb3853e0a366d9f3670e483b4d66afed9 Mon Sep 17 00:00:00 2001 From: Martynas Gurskas Date: Thu, 11 Apr 2024 15:34:25 +0300 Subject: [PATCH] Fix Rust code Signed-off-by: Martynas Gurskas --- bindgen/src/bindings/cpp/gen_cpp/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindgen/src/bindings/cpp/gen_cpp/mod.rs b/bindgen/src/bindings/cpp/gen_cpp/mod.rs index 29f01c9..a590026 100644 --- a/bindgen/src/bindings/cpp/gen_cpp/mod.rs +++ b/bindgen/src/bindings/cpp/gen_cpp/mod.rs @@ -25,7 +25,7 @@ use uniffi_bindgen::{ }; #[derive(Serialize, Deserialize, Clone, Debug)] -enum EnumStyle { +pub enum EnumStyle { Capitalized, Google, }