pub struct JiraRemoteIssueLinkObject {
pub url: String,
pub title: Option<String>,
pub summary: Option<String>,
pub icon: Option<JiraRemoteIssueLinkIcon>,
}Expand description
The remote object an entry of JiraRemoteIssueLink points at.
Fields§
§url: StringRemote URL.
title: Option<String>Display title for the remote object.
summary: Option<String>Short summary text for the remote object.
icon: Option<JiraRemoteIssueLinkIcon>Icon associated with the remote object (often labels the kind of external target, e.g. “Confluence Page”).
Trait Implementations§
Source§impl Clone for JiraRemoteIssueLinkObject
impl Clone for JiraRemoteIssueLinkObject
Source§fn clone(&self) -> JiraRemoteIssueLinkObject
fn clone(&self) -> JiraRemoteIssueLinkObject
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 JiraRemoteIssueLinkObject
impl Debug for JiraRemoteIssueLinkObject
Auto Trait Implementations§
impl Freeze for JiraRemoteIssueLinkObject
impl RefUnwindSafe for JiraRemoteIssueLinkObject
impl Send for JiraRemoteIssueLinkObject
impl Sync for JiraRemoteIssueLinkObject
impl Unpin for JiraRemoteIssueLinkObject
impl UnsafeUnpin for JiraRemoteIssueLinkObject
impl UnwindSafe for JiraRemoteIssueLinkObject
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