pub struct IssueRelationCreateInput {
pub id: Option<String>,
pub type: Option<IssueRelationType>,
pub issue_id: Option<String>,
pub related_issue_id: Option<String>,
}Fields§
§id: Option<String>The identifier in UUID v4 format. If none is provided, the backend will generate one.
type: Option<IssueRelationType>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 IssueRelationCreateInput
impl Clone for IssueRelationCreateInput
Source§fn clone(&self) -> IssueRelationCreateInput
fn clone(&self) -> IssueRelationCreateInput
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 IssueRelationCreateInput
impl Debug for IssueRelationCreateInput
Source§impl Default for IssueRelationCreateInput
impl Default for IssueRelationCreateInput
Source§fn default() -> IssueRelationCreateInput
fn default() -> IssueRelationCreateInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssueRelationCreateInput
impl<'de> Deserialize<'de> for IssueRelationCreateInput
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 IssueRelationCreateInput
impl RefUnwindSafe for IssueRelationCreateInput
impl Send for IssueRelationCreateInput
impl Sync for IssueRelationCreateInput
impl Unpin for IssueRelationCreateInput
impl UnwindSafe for IssueRelationCreateInput
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