pub struct SearchMetadata {
pub id: String,
pub status: Option<String>,
pub json_endpoint: Option<String>,
pub created_at: Option<String>,
pub processed_at: Option<String>,
pub google_url: Option<String>,
pub raw_html_file: Option<String>,
pub total_time_taken: Option<f64>,
pub pixel_position_endpoint: Option<String>,
}
Expand description
Metadata about the search request execution.
Contains information about how the search was processed, including timing data and unique identifiers for the request.
Fields§
§id: String
Unique identifier for this search request
status: Option<String>
Status of the search request (“Success”, “Error”, etc.)
json_endpoint: Option<String>
API endpoint URL for this specific search
created_at: Option<String>
Timestamp when the search was initiated
processed_at: Option<String>
Timestamp when the search was completed
google_url: Option<String>
Google search URL that would produce similar results
raw_html_file: Option<String>
URL to raw HTML file (if available)
total_time_taken: Option<f64>
Total processing time in seconds
pixel_position_endpoint: Option<String>
Pixel position endpoint
Trait Implementations§
Source§impl Clone for SearchMetadata
impl Clone for SearchMetadata
Source§fn clone(&self) -> SearchMetadata
fn clone(&self) -> SearchMetadata
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SearchMetadata
impl Debug for SearchMetadata
Source§impl<'de> Deserialize<'de> for SearchMetadata
impl<'de> Deserialize<'de> for SearchMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SearchMetadata
impl RefUnwindSafe for SearchMetadata
impl Send for SearchMetadata
impl Sync for SearchMetadata
impl Unpin for SearchMetadata
impl UnwindSafe for SearchMetadata
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more