pub struct IssueMatchesForJql {
pub matched_issues: Vec<i64>,
pub errors: Vec<String>,
}
Expand description
IssueMatchesForJql : A list of the issues matched to a JQL query or details of errors encountered during matching.
Fields§
§matched_issues: Vec<i64>
A list of issue IDs.
errors: Vec<String>
A list of errors.
Implementations§
Trait Implementations§
Source§impl Clone for IssueMatchesForJql
impl Clone for IssueMatchesForJql
Source§fn clone(&self) -> IssueMatchesForJql
fn clone(&self) -> IssueMatchesForJql
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 IssueMatchesForJql
impl Debug for IssueMatchesForJql
Source§impl Default for IssueMatchesForJql
impl Default for IssueMatchesForJql
Source§fn default() -> IssueMatchesForJql
fn default() -> IssueMatchesForJql
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueMatchesForJql
impl<'de> Deserialize<'de> for IssueMatchesForJql
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 PartialEq for IssueMatchesForJql
impl PartialEq for IssueMatchesForJql
Source§impl Serialize for IssueMatchesForJql
impl Serialize for IssueMatchesForJql
impl StructuralPartialEq for IssueMatchesForJql
Auto Trait Implementations§
impl Freeze for IssueMatchesForJql
impl RefUnwindSafe for IssueMatchesForJql
impl Send for IssueMatchesForJql
impl Sync for IssueMatchesForJql
impl Unpin for IssueMatchesForJql
impl UnwindSafe for IssueMatchesForJql
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