pub struct SearchIssuesInput {Show 13 fields
pub query: Option<String>,
pub include_comments: Option<bool>,
pub priority: Option<i32>,
pub state_id: Option<String>,
pub assignee_id: Option<String>,
pub team_id: Option<String>,
pub project_id: Option<String>,
pub created_after: Option<String>,
pub created_before: Option<String>,
pub updated_after: Option<String>,
pub updated_before: Option<String>,
pub first: Option<i32>,
pub after: Option<String>,
}Expand description
Input for search_issues tool.
Fields§
§query: Option<String>Full-text search term (searches title, description, and optionally comments)
include_comments: Option<bool>Include comments in full-text search (default: true, only applies when query is provided)
priority: Option<i32>Filter by priority (0=None, 1=Urgent, 2=High, 3=Normal, 4=Low)
state_id: Option<String>Workflow state ID (UUID)
assignee_id: Option<String>Assignee user ID (UUID)
team_id: Option<String>Team ID (UUID)
project_id: Option<String>Project ID (UUID)
created_after: Option<String>Only issues created after this ISO 8601 date
created_before: Option<String>Only issues created before this ISO 8601 date
updated_after: Option<String>Only issues updated after this ISO 8601 date
updated_before: Option<String>Only issues updated before this ISO 8601 date
first: Option<i32>Page size (default 50, max 100)
after: Option<String>Pagination cursor
Trait Implementations§
Source§impl Clone for SearchIssuesInput
impl Clone for SearchIssuesInput
Source§fn clone(&self) -> SearchIssuesInput
fn clone(&self) -> SearchIssuesInput
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 SearchIssuesInput
impl Debug for SearchIssuesInput
Source§impl<'de> Deserialize<'de> for SearchIssuesInput
impl<'de> Deserialize<'de> for SearchIssuesInput
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 SearchIssuesInput
impl JsonSchema for SearchIssuesInput
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 SearchIssuesInput
impl RefUnwindSafe for SearchIssuesInput
impl Send for SearchIssuesInput
impl Sync for SearchIssuesInput
impl Unpin for SearchIssuesInput
impl UnsafeUnpin for SearchIssuesInput
impl UnwindSafe for SearchIssuesInput
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