pub struct StatsResponse {
pub(crate) recent_searches: Vec<SearchStatistic>,
pub(crate) total_count: usize,
}
Expand description
Response structure for search statistics.
Contains recent search operations and analytics data.
Fields§
§recent_searches: Vec<SearchStatistic>
Array of recent search statistics
total_count: usize
Total number of statistics returned
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StatsResponse
impl RefUnwindSafe for StatsResponse
impl Send for StatsResponse
impl Sync for StatsResponse
impl Unpin for StatsResponse
impl UnwindSafe for StatsResponse
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