pub struct IssueSearchResult {Show 16 fields
pub id: Id,
pub identifier: String,
pub title: String,
pub description: Option<String>,
pub priority: f64,
pub priority_label: String,
pub label_ids: Vec<String>,
pub due_date: Option<TimelessDate>,
pub url: String,
pub created_at: DateTime,
pub updated_at: DateTime,
pub creator: Option<User>,
pub team: Team,
pub state: WorkflowState,
pub assignee: Option<User>,
pub project: Option<Project>,
}Expand description
IssueSearchResult from searchIssues query - has issue fields directly. NOTE: Duplicates subset of Issue fields; keep in sync. Nullability differs (e.g., state is non-null here).
Fields§
§id: Id§identifier: String§title: String§description: Option<String>§priority: f64§priority_label: String§label_ids: Vec<String>§due_date: Option<TimelessDate>§url: String§created_at: DateTime§updated_at: DateTime§creator: Option<User>§team: Team§state: WorkflowState§assignee: Option<User>§project: Option<Project>Trait Implementations§
Source§impl Clone for IssueSearchResult
impl Clone for IssueSearchResult
Source§fn clone(&self) -> IssueSearchResult
fn clone(&self) -> IssueSearchResult
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 IssueSearchResult
impl Debug for IssueSearchResult
Source§impl<'de> Deserialize<'de> for IssueSearchResult
impl<'de> Deserialize<'de> for IssueSearchResult
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 QueryFragment for IssueSearchResult
impl QueryFragment for IssueSearchResult
Source§type SchemaType = IssueSearchResult
type SchemaType = IssueSearchResult
The type in a schema that this
QueryFragment representsSource§type VariablesFields = ()
type VariablesFields = ()
The variables that are required to execute this
QueryFragmentSource§fn query(builder: SelectionBuilder<'_, Self::SchemaType, Self::VariablesFields>)
fn query(builder: SelectionBuilder<'_, Self::SchemaType, Self::VariablesFields>)
Adds this fragment to the query being built by
builderAuto Trait Implementations§
impl Freeze for IssueSearchResult
impl RefUnwindSafe for IssueSearchResult
impl Send for IssueSearchResult
impl Sync for IssueSearchResult
impl Unpin for IssueSearchResult
impl UnwindSafe for IssueSearchResult
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