gws-builder 0.1.1

Build-time codegen from Google API Discovery: Rust types, method metadata, and serde helpers for Workspace agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! TokenStream codegen (structs, enums, methods, action descriptors).

pub mod actions;
pub mod enums;
pub mod methods;
pub mod naming;
pub mod structs;

pub use actions::{emit_action_descriptor_types, emit_method_action};
pub use enums::emit_enum;
pub use methods::emit_method_param_structs;
pub use structs::emit_struct;