pub struct AddCommentInput {
pub issue: String,
pub body: String,
pub parent_id: Option<String>,
}Expand description
Input for add_comment tool.
Fields§
§issue: StringIssue ID, identifier (e.g., ENG-245), or URL
body: StringComment body (markdown supported)
parent_id: Option<String>Parent comment ID for replies (UUID)
Trait Implementations§
Source§impl Clone for AddCommentInput
impl Clone for AddCommentInput
Source§fn clone(&self) -> AddCommentInput
fn clone(&self) -> AddCommentInput
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 Debug for AddCommentInput
impl Debug for AddCommentInput
Source§impl<'de> Deserialize<'de> for AddCommentInput
impl<'de> Deserialize<'de> for AddCommentInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for AddCommentInput
impl JsonSchema for AddCommentInput
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for AddCommentInput
impl RefUnwindSafe for AddCommentInput
impl Send for AddCommentInput
impl Sync for AddCommentInput
impl Unpin for AddCommentInput
impl UnsafeUnpin for AddCommentInput
impl UnwindSafe for AddCommentInput
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