Crates.io | bigquery-functions-types-macros |
lib.rs | bigquery-functions-types-macros |
version | 0.1.15 |
source | src |
created_at | 2022-10-24 01:54:23.054196 |
updated_at | 2024-06-09 02:33:30.154913 |
description | proc macros to define BigQuery function types |
homepage | |
repository | https://github.com/kiibo382/bigquery-functions/ |
max_upload_size | |
id | 695498 |
size | 785,888 |
This Reference is parsed to generate type definitions.
See output for a list of BiqQuery functions.
Here's how to process a list of BigQuery functions using Rust. Fist, add the following to Cargo.toml.
[dependencies]
bigquery-functions = "0.1.15"
Then call the function or type as follows.
use bigquery_functions::get_bigquery_function_names;
fn main() {
let function_names = get_bigquery_function_names();
println!("function_names: {:?}", function_names)
}
docs.rs is also helpful.