pub struct IssueImportJqlCheckPayload {
pub success: Option<bool>,
pub count: Option<f64>,
pub error: Option<String>,
}Expand description
Whether a custom JQL query is valid or not
Fields§
§success: Option<bool>Returns true if the JQL query has been validated successfully, false otherwise
count: Option<f64>Returns an approximate number of issues matching the JQL query, if available
error: Option<String>An error message returned by Jira when validating the JQL query.
Trait Implementations§
Source§impl Clone for IssueImportJqlCheckPayload
impl Clone for IssueImportJqlCheckPayload
Source§fn clone(&self) -> IssueImportJqlCheckPayload
fn clone(&self) -> IssueImportJqlCheckPayload
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 IssueImportJqlCheckPayload
impl Debug for IssueImportJqlCheckPayload
Source§impl Default for IssueImportJqlCheckPayload
impl Default for IssueImportJqlCheckPayload
Source§fn default() -> IssueImportJqlCheckPayload
fn default() -> IssueImportJqlCheckPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueImportJqlCheckPayloadwhere
IssueImportJqlCheckPayload: Default,
impl<'de> Deserialize<'de> for IssueImportJqlCheckPayloadwhere
IssueImportJqlCheckPayload: Default,
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
Auto Trait Implementations§
impl Freeze for IssueImportJqlCheckPayload
impl RefUnwindSafe for IssueImportJqlCheckPayload
impl Send for IssueImportJqlCheckPayload
impl Sync for IssueImportJqlCheckPayload
impl Unpin for IssueImportJqlCheckPayload
impl UnwindSafe for IssueImportJqlCheckPayload
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