pub struct ExtractedTool {
pub file: String,
pub name: String,
pub description: Option<String>,
}Expand description
Rust source finders used to identify prompts, tools, and entrypoints.
Fields§
§file: String§name: String§description: Option<String>Trait Implementations§
Source§impl Clone for ExtractedTool
impl Clone for ExtractedTool
Source§fn clone(&self) -> ExtractedTool
fn clone(&self) -> ExtractedTool
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 moreAuto Trait Implementations§
impl Freeze for ExtractedTool
impl RefUnwindSafe for ExtractedTool
impl Send for ExtractedTool
impl Sync for ExtractedTool
impl Unpin for ExtractedTool
impl UnsafeUnpin for ExtractedTool
impl UnwindSafe for ExtractedTool
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