This Reference is parsed to generate type definitions.
If you want to use it with json, see output.
Add the following to Cargo.toml.
toml
[dependencies]
bigquery-functions = "0.1.4"
Then call the function or type as follows. ```rust use bigqueryfunctions::getbigqueryfunctionnames;
fn main() { let functionnames = getbigqueryfunctionnames(); println!("functionnames: {:?}", functionnames) } ```
docs.rs is also helpful.