pub struct WikipediaOutput {
pub query: String,
pub results: Vec<WikipediaResult>,
pub total: usize,
}Expand description
Wikipedia tool output
Fields§
§query: StringThe query
results: Vec<WikipediaResult>The result list
total: usizeNumber of results
Trait Implementations§
Source§impl Debug for WikipediaOutput
impl Debug for WikipediaOutput
Auto Trait Implementations§
impl Freeze for WikipediaOutput
impl RefUnwindSafe for WikipediaOutput
impl Send for WikipediaOutput
impl Sync for WikipediaOutput
impl Unpin for WikipediaOutput
impl UnsafeUnpin for WikipediaOutput
impl UnwindSafe for WikipediaOutput
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