serper-sdk 0.1.3

A minimalistic yet ergonomic Rust SDK for the Serper Google Search API
Documentation
1
2
3
4
5
6
7
8
/// Core module containing fundamental types and error handling
///
/// This module provides the foundational components used throughout the SDK.
pub mod error;
pub mod types;

pub use error::{Result, SerperError};
pub use types::{ApiKey, BaseUrl, Location, Pagination};