pub struct SearchIssuesTool { /* private fields */ }Expand description
Tool for searching Linear issues.
Implementations§
Source§impl SearchIssuesTool
impl SearchIssuesTool
pub fn new(linear: Arc<LinearTools>) -> Self
Trait Implementations§
Source§impl Clone for SearchIssuesTool
impl Clone for SearchIssuesTool
Source§fn clone(&self) -> SearchIssuesTool
fn clone(&self) -> SearchIssuesTool
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Tool for SearchIssuesTool
impl Tool for SearchIssuesTool
Source§const DESCRIPTION: &'static str = "Search Linear issues using full-text search and/or filters"
const DESCRIPTION: &'static str = "Search Linear issues using full-text search and/or filters"
Human-readable description of what the tool does.
Source§type Input = SearchIssuesInput
type Input = SearchIssuesInput
Input type for the tool (no serde bounds required).
Source§type Output = SearchResult
type Output = SearchResult
Output type for the tool (no serde bounds required).
Auto Trait Implementations§
impl Freeze for SearchIssuesTool
impl RefUnwindSafe for SearchIssuesTool
impl Send for SearchIssuesTool
impl Sync for SearchIssuesTool
impl Unpin for SearchIssuesTool
impl UnsafeUnpin for SearchIssuesTool
impl UnwindSafe for SearchIssuesTool
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