pub struct RobotSearchOutput {
pub envelope: RobotEnvelope,
pub query: String,
pub limit: usize,
pub mode: String,
pub preset: Option<String>,
pub weights: Option<SearchWeights>,
pub results: Vec<SearchResult>,
pub usage_hints: Vec<String>,
}Fields§
§envelope: RobotEnvelope§query: String§limit: usize§mode: String§preset: Option<String>§weights: Option<SearchWeights>§results: Vec<SearchResult>§usage_hints: Vec<String>Trait Implementations§
Source§impl Debug for RobotSearchOutput
impl Debug for RobotSearchOutput
Auto Trait Implementations§
impl Freeze for RobotSearchOutput
impl RefUnwindSafe for RobotSearchOutput
impl Send for RobotSearchOutput
impl Sync for RobotSearchOutput
impl Unpin for RobotSearchOutput
impl UnsafeUnpin for RobotSearchOutput
impl UnwindSafe for RobotSearchOutput
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