pub struct LinkedIssue {
pub id: String,
pub key: String,
pub summary: String,
pub status: String,
pub priority: Option<String>,
pub issue_type: String,
}Fields§
§id: String§key: String§summary: String§status: String§priority: Option<String>§issue_type: StringImplementations§
Source§impl LinkedIssue
impl LinkedIssue
pub fn from_value(value: &Value) -> Option<Self>
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 (const: unstable) · 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<'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
Auto Trait Implementations§
impl Freeze for LinkedIssue
impl RefUnwindSafe for LinkedIssue
impl Send for LinkedIssue
impl Sync for LinkedIssue
impl Unpin for LinkedIssue
impl UnsafeUnpin 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