2023-09-03 13:50:50 -04:00
|
|
|
//! This module provides the models to parse cookies and search parameters from the search
|
|
|
|
//! engine website.
|
|
|
|
use serde::Deserialize;
|
|
|
|
|
|
|
|
/// A named struct which deserializes all the user provided search parameters and stores them.
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct SearchParams {
|
|
|
|
/// It stores the search parameter option `q` (or query in simple words)
|
|
|
|
/// of the search url.
|
|
|
|
pub q: Option<String>,
|
|
|
|
/// It stores the search parameter `page` (or pageno in simple words)
|
|
|
|
/// of the search url.
|
|
|
|
pub page: Option<u32>,
|
2023-09-17 05:48:52 -04:00
|
|
|
/// It stores the search parameter `safesearch` (or safe search level in simple words) of the
|
|
|
|
/// search url.
|
|
|
|
pub safesearch: Option<u8>,
|
2023-09-03 13:50:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// A named struct which is used to deserialize the cookies fetched from the client side.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
#[derive(Deserialize)]
|
2023-09-17 05:48:52 -04:00
|
|
|
pub struct Cookie<'a> {
|
2023-09-03 13:50:50 -04:00
|
|
|
/// It stores the theme name used in the website.
|
2023-09-17 05:48:52 -04:00
|
|
|
pub theme: &'a str,
|
2023-09-03 13:50:50 -04:00
|
|
|
/// It stores the colorscheme name used for the website theme.
|
2023-09-17 05:48:52 -04:00
|
|
|
pub colorscheme: &'a str,
|
2023-09-03 13:50:50 -04:00
|
|
|
/// It stores the user selected upstream search engines selected from the UI.
|
2023-09-17 05:48:52 -04:00
|
|
|
pub engines: Vec<&'a str>,
|
2023-09-03 13:50:50 -04:00
|
|
|
}
|