pub struct JiraRemoteIssueLink {
pub id: String,
pub global_id: Option<String>,
pub relationship: Option<String>,
pub object: JiraRemoteIssueLinkObject,
}Expand description
A remote (external URL) issue link on a JIRA issue.
Returned by GET /rest/api/3/issue/{issueIdOrKey}/remotelink. These
point out to non-JIRA resources (Confluence pages, Bitbucket PRs,
external trackers).
Fields§
§id: StringRemote link ID assigned by JIRA.
global_id: Option<String>Application-defined global identifier, when the linking application supplied one.
relationship: Option<String>Free-form description of how the issue relates to the remote object (e.g., “mentioned in”, “causes”).
object: JiraRemoteIssueLinkObjectThe remote object the link points at.
Trait Implementations§
Source§impl Clone for JiraRemoteIssueLink
impl Clone for JiraRemoteIssueLink
Source§fn clone(&self) -> JiraRemoteIssueLink
fn clone(&self) -> JiraRemoteIssueLink
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 JiraRemoteIssueLink
impl Debug for JiraRemoteIssueLink
Auto Trait Implementations§
impl Freeze for JiraRemoteIssueLink
impl RefUnwindSafe for JiraRemoteIssueLink
impl Send for JiraRemoteIssueLink
impl Sync for JiraRemoteIssueLink
impl Unpin for JiraRemoteIssueLink
impl UnsafeUnpin for JiraRemoteIssueLink
impl UnwindSafe for JiraRemoteIssueLink
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