pub trait GenCode {
// Required method
fn swift_client_code(&self, ctx: &Context) -> String;
// Provided method
fn rust_server_code(&self, _ctx: &Context) -> String { ... }
}
pub trait GenCode {
// Required method
fn swift_client_code(&self, ctx: &Context) -> String;
// Provided method
fn rust_server_code(&self, _ctx: &Context) -> String { ... }
}