Crate baserow_rs

Source
Expand description

A Rust client for the Baserow API

This crate provides a strongly-typed client for interacting with Baserow’s REST API. It supports authentication, table operations, file uploads, and more.

§Example

use baserow_rs::{ConfigBuilder, Baserow, BaserowTableOperations, api::client::BaserowClient};
use std::collections::HashMap;
use serde_json::Value;

#[tokio::main]
async fn main() {
    // Create a configuration
    let config = ConfigBuilder::new()
        .base_url("https://api.baserow.io")
        .api_key("your-api-key")
        .build();

    // Initialize the client
    let baserow = Baserow::with_configuration(config);

    // Get a table reference
    let table = baserow.table_by_id(1234);

    // Create a record
    let mut data = HashMap::new();
    data.insert("Name".to_string(), Value::String("Test".to_string()));

    let result = table.create_one(data).await.unwrap();
    println!("Created record: {:?}", result);
}

Re-exports§

Modules§

Structs§

Enums§