Struct jira_query::LinkedIssue
source · pub struct LinkedIssue {
pub id: String,
pub key: String,
pub fields: LinkedIssueFields,
pub self_link: String,
pub extra: Value,
}
Expand description
A Jira issue linked from another one.
Fields§
§id: String
§key: String
§fields: LinkedIssueFields
§self_link: String
§extra: Value
Trait Implementations§
source§impl Clone for LinkedIssue
impl Clone for LinkedIssue
source§fn clone(&self) -> LinkedIssue
fn clone(&self) -> LinkedIssue
Returns a copy 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 LinkedIssue
impl Debug for LinkedIssue
source§impl<'de> Deserialize<'de> for LinkedIssue
impl<'de> Deserialize<'de> for LinkedIssue
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 LinkedIssue
impl PartialEq for LinkedIssue
source§fn eq(&self, other: &LinkedIssue) -> bool
fn eq(&self, other: &LinkedIssue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LinkedIssue
impl Serialize for LinkedIssue
impl Eq for LinkedIssue
impl StructuralPartialEq for LinkedIssue
Auto Trait Implementations§
impl Freeze for LinkedIssue
impl RefUnwindSafe for LinkedIssue
impl Send for LinkedIssue
impl Sync for LinkedIssue
impl Unpin for LinkedIssue
impl UnwindSafe for LinkedIssue
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.