pub struct LinkedIssue {
pub id: Option<String>,
pub key: Option<String>,
pub param_self: Option<String>,
pub fields: Option<Box<Fields>>,
}
Expand description
LinkedIssue : The ID or key of a linked issue.
Fields§
§id: Option<String>
The ID of an issue. Required if key
isn’t provided.
key: Option<String>
The key of an issue. Required if id
isn’t provided.
param_self: Option<String>
The URL of the issue.
fields: Option<Box<Fields>>
The fields associated with the issue.
Implementations§
Source§impl LinkedIssue
impl LinkedIssue
Sourcepub fn new() -> LinkedIssue
pub fn new() -> LinkedIssue
The ID or key of a linked issue.
Trait Implementations§
Source§impl Clone for LinkedIssue
impl Clone for LinkedIssue
Source§fn clone(&self) -> LinkedIssue
fn clone(&self) -> LinkedIssue
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 LinkedIssue
impl Debug for LinkedIssue
Source§impl Default for LinkedIssue
impl Default for LinkedIssue
Source§fn default() -> LinkedIssue
fn default() -> LinkedIssue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinkedIssue
impl<'de> Deserialize<'de> for LinkedIssue
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 LinkedIssue
impl PartialEq for LinkedIssue
Source§impl Serialize for LinkedIssue
impl Serialize for LinkedIssue
impl StructuralPartialEq for LinkedIssue
Auto Trait Implementations§
impl Freeze for LinkedIssue
impl RefUnwindSafe for LinkedIssue
impl Send for LinkedIssue
impl Sync for LinkedIssue
impl Unpin for LinkedIssue
impl UnwindSafe for LinkedIssue
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