pub struct PageInRequest {
pub call_id: String,
pub tool: String,
pub query: String,
pub top_k: u32,
}Expand description
Parsed arguments for a page-in meta-tool call.
Fields§
§call_id: String§tool: String§query: String§top_k: u32Trait Implementations§
Source§impl Clone for PageInRequest
impl Clone for PageInRequest
Source§fn clone(&self) -> PageInRequest
fn clone(&self) -> PageInRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PageInRequest
impl Debug for PageInRequest
Source§impl Default for PageInRequest
impl Default for PageInRequest
Source§fn default() -> PageInRequest
fn default() -> PageInRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PageInRequest
impl RefUnwindSafe for PageInRequest
impl Send for PageInRequest
impl Sync for PageInRequest
impl Unpin for PageInRequest
impl UnsafeUnpin for PageInRequest
impl UnwindSafe for PageInRequest
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