pub trait ToRust {
// Required methods
fn to_rust_ref(&self, serde_with: bool) -> String;
fn to_rust_decl(&self, serde_with: bool, add_derives: bool) -> String;
fn add_derives(&self, input: String) -> String;
}pub trait ToRust {
// Required methods
fn to_rust_ref(&self, serde_with: bool) -> String;
fn to_rust_decl(&self, serde_with: bool, add_derives: bool) -> String;
fn add_derives(&self, input: String) -> String;
}