pub struct RemoteIssueLink {
pub id: Option<i64>,
pub param_self: Option<String>,
pub global_id: Option<String>,
pub application: Option<Application>,
pub relationship: Option<String>,
pub object: Option<RemoteObject>,
}
Expand description
RemoteIssueLink : Details of an issue remote link.
Fields§
§id: Option<i64>
The ID of the link.
param_self: Option<String>
The URL of the link.
global_id: Option<String>
The global ID of the link, such as the ID of the item on the remote system.
application: Option<Application>
Details of the remote application the linked item is in.
relationship: Option<String>
Description of the relationship between the issue and the linked item.
object: Option<RemoteObject>
Details of the item linked to.
Implementations§
Source§impl RemoteIssueLink
impl RemoteIssueLink
Sourcepub fn new() -> RemoteIssueLink
pub fn new() -> RemoteIssueLink
Details of an issue remote link.
Trait Implementations§
Source§impl Clone for RemoteIssueLink
impl Clone for RemoteIssueLink
Source§fn clone(&self) -> RemoteIssueLink
fn clone(&self) -> RemoteIssueLink
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 RemoteIssueLink
impl Debug for RemoteIssueLink
Source§impl Default for RemoteIssueLink
impl Default for RemoteIssueLink
Source§fn default() -> RemoteIssueLink
fn default() -> RemoteIssueLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteIssueLink
impl<'de> Deserialize<'de> for RemoteIssueLink
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 RemoteIssueLink
impl PartialEq for RemoteIssueLink
Source§impl Serialize for RemoteIssueLink
impl Serialize for RemoteIssueLink
impl StructuralPartialEq for RemoteIssueLink
Auto Trait Implementations§
impl Freeze for RemoteIssueLink
impl RefUnwindSafe for RemoteIssueLink
impl Send for RemoteIssueLink
impl Sync for RemoteIssueLink
impl Unpin for RemoteIssueLink
impl UnwindSafe for RemoteIssueLink
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