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
9
10
11
12
13
14
/// Search module containing query construction and response handling
///
/// This module provides comprehensive functionality for building search queries,
/// handling responses, and orchestrating search operations.
pub mod query;
pub mod response;
pub mod service;

pub use query::{SearchQuery, SearchQueryBuilder};
pub use response::{
    AnswerBox, KnowledgeGraph, NewsResult, OrganicResult, RelatedQuestion, ResponseParser,
    SearchMetadata, SearchResponse, ShoppingResult,
};
pub use service::SearchService;