Struct jira::gen::models::jexp_jql_issues::JexpJqlIssues[][src]

pub struct JexpJqlIssues {
    pub query: Option<String>,
    pub start_at: Option<i64>,
    pub max_results: Option<i32>,
    pub validation: Option<Validation>,
}

JexpJqlIssues : The JQL specifying the issues available in the evaluated Jira expression under the issues context variable. Not all issues returned by the JQL query are loaded, only those described by the startAt and maxResults properties. To determine whether it is necessary to iterate to ensure all the issues returned by the JQL query are evaluated, inspect meta.issues.jql.count in the response.

Fields

query: Option<String>

The JQL query.

start_at: Option<i64>

The index of the first issue to return from the JQL query.

max_results: Option<i32>

The maximum number of issues to return from the JQL query. Inspect meta.issues.jql.maxResults in the response to ensure the maximum value has not been exceeded.

validation: Option<Validation>

Determines how to validate the JQL query and treat the validation results.

Implementations

impl JexpJqlIssues[src]

pub fn new() -> JexpJqlIssues[src]

The JQL specifying the issues available in the evaluated Jira expression under the issues context variable. Not all issues returned by the JQL query are loaded, only those described by the startAt and maxResults properties. To determine whether it is necessary to iterate to ensure all the issues returned by the JQL query are evaluated, inspect meta.issues.jql.count in the response.

Trait Implementations

impl Clone for JexpJqlIssues[src]

impl Debug for JexpJqlIssues[src]

impl<'de> Deserialize<'de> for JexpJqlIssues[src]

impl PartialEq<JexpJqlIssues> for JexpJqlIssues[src]

impl Serialize for JexpJqlIssues[src]

impl StructuralPartialEq for JexpJqlIssues[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.