pub struct AddCommentTool { /* private fields */ }Expand description
Tool for adding a comment to a Linear issue.
Implementations§
Source§impl AddCommentTool
impl AddCommentTool
pub fn new(linear: Arc<LinearTools>) -> Self
Trait Implementations§
Source§impl Clone for AddCommentTool
impl Clone for AddCommentTool
Source§fn clone(&self) -> AddCommentTool
fn clone(&self) -> AddCommentTool
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 AddCommentTool
impl Tool for AddCommentTool
Source§const DESCRIPTION: &'static str = "Add a comment to a Linear issue"
const DESCRIPTION: &'static str = "Add a comment to a Linear issue"
Human-readable description of what the tool does.
Source§type Input = AddCommentInput
type Input = AddCommentInput
Input type for the tool (no serde bounds required).
Source§type Output = CommentResult
type Output = CommentResult
Output type for the tool (no serde bounds required).
Auto Trait Implementations§
impl Freeze for AddCommentTool
impl RefUnwindSafe for AddCommentTool
impl Send for AddCommentTool
impl Sync for AddCommentTool
impl Unpin for AddCommentTool
impl UnsafeUnpin for AddCommentTool
impl UnwindSafe for AddCommentTool
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