pub struct IssueLink {
pub id: Option<String>,
pub param_self: Option<String>,
pub type: Box<IssueLinkType>,
pub inward_issue: Box<LinkedIssue>,
pub outward_issue: Box<LinkedIssue>,
}
Expand description
IssueLink : Details of a link between issues.
Fields§
§id: Option<String>
The ID of the issue link.
param_self: Option<String>
The URL of the issue link.
type: Box<IssueLinkType>
The type of link between the issues.
inward_issue: Box<LinkedIssue>
The issue the link joins to.
outward_issue: Box<LinkedIssue>
The issue the link originates from.
Implementations§
Source§impl IssueLink
impl IssueLink
Sourcepub fn new(
type: IssueLinkType,
inward_issue: LinkedIssue,
outward_issue: LinkedIssue,
) -> IssueLink
pub fn new( type: IssueLinkType, inward_issue: LinkedIssue, outward_issue: LinkedIssue, ) -> IssueLink
Details of a link between issues.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IssueLink
impl<'de> Deserialize<'de> for IssueLink
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
impl StructuralPartialEq for IssueLink
Auto Trait Implementations§
impl Freeze for IssueLink
impl RefUnwindSafe for IssueLink
impl Send for IssueLink
impl Sync for IssueLink
impl Unpin for IssueLink
impl UnwindSafe for IssueLink
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