qrawl 0.6.0

Rust toolkit to crawl web data for AI agents
Documentation
1
2
3
4
5
6
7
8
9
10
use serde::{Deserialize, Serialize};

/// Extract preview result.
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct ExtractPreviewResult {
    pub title: Option<String>,
    pub description: Option<String>,
    pub image: Option<String>,
}