pub struct RemoteIssueLinkRequest {
pub global_id: Option<String>,
pub application: Option<Application>,
pub relationship: Option<String>,
pub object: RemoteObject,
}
Expand description
RemoteIssueLinkRequest : Details of a remote issue link.
Fields§
§global_id: Option<String>
An identifier for the remote item in the remote system. For example, the global ID for a remote item in Confluence would consist of the app ID and page ID, like this: appId=456&pageId=123
. Setting this field enables the remote issue link details to be updated or deleted using remote system and item details as the record identifier, rather than using the record’s Jira ID. The maximum length is 255 characters.
application: Option<Application>
Details of the remote application the linked item is in. For example, trello.
relationship: Option<String>
Description of the relationship between the issue and the linked item. If not set, the relationship description "links to" is used in Jira.
object: RemoteObject
Details of the item linked to.
Implementations§
Source§impl RemoteIssueLinkRequest
impl RemoteIssueLinkRequest
Sourcepub fn new(object: RemoteObject) -> RemoteIssueLinkRequest
pub fn new(object: RemoteObject) -> RemoteIssueLinkRequest
Details of a remote issue link.
Trait Implementations§
Source§impl Clone for RemoteIssueLinkRequest
impl Clone for RemoteIssueLinkRequest
Source§fn clone(&self) -> RemoteIssueLinkRequest
fn clone(&self) -> RemoteIssueLinkRequest
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 RemoteIssueLinkRequest
impl Debug for RemoteIssueLinkRequest
Source§impl Default for RemoteIssueLinkRequest
impl Default for RemoteIssueLinkRequest
Source§fn default() -> RemoteIssueLinkRequest
fn default() -> RemoteIssueLinkRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteIssueLinkRequest
impl<'de> Deserialize<'de> for RemoteIssueLinkRequest
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 RemoteIssueLinkRequest
impl PartialEq for RemoteIssueLinkRequest
Source§impl Serialize for RemoteIssueLinkRequest
impl Serialize for RemoteIssueLinkRequest
impl StructuralPartialEq for RemoteIssueLinkRequest
Auto Trait Implementations§
impl Freeze for RemoteIssueLinkRequest
impl RefUnwindSafe for RemoteIssueLinkRequest
impl Send for RemoteIssueLinkRequest
impl Sync for RemoteIssueLinkRequest
impl Unpin for RemoteIssueLinkRequest
impl UnwindSafe for RemoteIssueLinkRequest
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