pub struct SearchInformation {
pub organic_results_state: Option<String>,
pub query_displayed: Option<String>,
pub time_taken_displayed: Option<f64>,
pub total_results: Option<u64>,
}
Expand description
Search information
Fields§
§organic_results_state: Option<String>
§query_displayed: Option<String>
§time_taken_displayed: Option<f64>
§total_results: Option<u64>
Trait Implementations§
Source§impl Clone for SearchInformation
impl Clone for SearchInformation
Source§fn clone(&self) -> SearchInformation
fn clone(&self) -> SearchInformation
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 SearchInformation
impl Debug for SearchInformation
Source§impl<'de> Deserialize<'de> for SearchInformation
impl<'de> Deserialize<'de> for SearchInformation
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 SearchInformation
impl RefUnwindSafe for SearchInformation
impl Send for SearchInformation
impl Sync for SearchInformation
impl Unpin for SearchInformation
impl UnwindSafe for SearchInformation
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