napi-rs/examples/napi/src/constructor.rs

8 lines
156 B
Rust
Raw Normal View History

#[napi(constructor)]
pub struct Selector {
pub order_by: Vec<String>,
pub select: Vec<String>,
pub r#struct: String,
pub r#where: Option<String>,
}