1use serde::Deserialize; 2 3#[derive(Deserialize, Debug)] 4pub struct SearchResults<T> { 5 pub data: T, 6 pub ok: bool, 7}