//! Search result types.
/// A single search result from any search backend.
#[derive(Debug, Clone)]pubstructSearchResult{/// Document/chunk identifier.
pubid: String,
/// Relevance score (0.0–1.0 for normalized, unbounded for raw BM25).
pubscore:f32,
/// Text content of the matched document/chunk.
pubtext: String,
}