pub struct JiraIssueLink {
pub id: Option<String>,
pub link_type: JiraIssueLinkType,
pub inward_issue: Option<Box<JiraIssue>>,
pub outward_issue: Option<Box<JiraIssue>>,
}Fields§
§id: Option<String>Link ID
link_type: JiraIssueLinkType§inward_issue: Option<Box<JiraIssue>>Inward issue (e.g., “is blocked by” this issue)
outward_issue: Option<Box<JiraIssue>>Outward issue (e.g., “blocks” this issue)
Trait Implementations§
Source§impl Clone for JiraIssueLink
impl Clone for JiraIssueLink
Source§fn clone(&self) -> JiraIssueLink
fn clone(&self) -> JiraIssueLink
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 JiraIssueLink
impl Debug for JiraIssueLink
Source§impl<'de> Deserialize<'de> for JiraIssueLink
impl<'de> Deserialize<'de> for JiraIssueLink
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 JiraIssueLink
impl RefUnwindSafe for JiraIssueLink
impl Send for JiraIssueLink
impl Sync for JiraIssueLink
impl Unpin for JiraIssueLink
impl UnsafeUnpin for JiraIssueLink
impl UnwindSafe for JiraIssueLink
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