pub struct RemoteLink {
pub id: i64,
pub self_url: Option<String>,
pub global_id: Option<String>,
pub relationship: Option<String>,
pub object: RemoteLinkObject,
}Expand description
A remote link attached to a Jira issue.
Returned by GET /rest/api/3/issue/{key}/remotelink. Only the fields
consumed by this crate’s callers are typed; the full Jira payload
includes additional optional metadata (icon, status, application).
Fields§
§id: i64§self_url: Option<String>§global_id: Option<String>§relationship: Option<String>§object: RemoteLinkObjectTrait Implementations§
Source§impl Clone for RemoteLink
impl Clone for RemoteLink
Source§fn clone(&self) -> RemoteLink
fn clone(&self) -> RemoteLink
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 RemoteLink
impl Debug for RemoteLink
Source§impl<'de> Deserialize<'de> for RemoteLink
impl<'de> Deserialize<'de> for RemoteLink
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 RemoteLink
impl RefUnwindSafe for RemoteLink
impl Send for RemoteLink
impl Sync for RemoteLink
impl Unpin for RemoteLink
impl UnsafeUnpin for RemoteLink
impl UnwindSafe for RemoteLink
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