pub struct IssueRelationUpdateInput {
pub type: Option<String>,
pub issue_id: Option<String>,
pub related_issue_id: Option<String>,
}Fields§
§type: Option<String>The type of relation of the issue to the related issue.
issue_id: Option<String>The identifier of the issue that is related to another issue. Can be a UUID or issue identifier (e.g., ‘LIN-123’).
The identifier of the related issue. Can be a UUID or issue identifier (e.g., ‘LIN-123’).
Trait Implementations§
Source§impl Clone for IssueRelationUpdateInput
impl Clone for IssueRelationUpdateInput
Source§fn clone(&self) -> IssueRelationUpdateInput
fn clone(&self) -> IssueRelationUpdateInput
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 IssueRelationUpdateInput
impl Debug for IssueRelationUpdateInput
Source§impl Default for IssueRelationUpdateInput
impl Default for IssueRelationUpdateInput
Source§fn default() -> IssueRelationUpdateInput
fn default() -> IssueRelationUpdateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueRelationUpdateInput
impl<'de> Deserialize<'de> for IssueRelationUpdateInput
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 IssueRelationUpdateInput
impl RefUnwindSafe for IssueRelationUpdateInput
impl Send for IssueRelationUpdateInput
impl Sync for IssueRelationUpdateInput
impl Unpin for IssueRelationUpdateInput
impl UnwindSafe for IssueRelationUpdateInput
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