pub struct DiffIssue {Show 13 fields
pub id: String,
pub title: String,
pub description: String,
pub status: String,
pub priority: i32,
pub issue_type: String,
pub assignee: Option<String>,
pub created_at: String,
pub updated_at: String,
pub closed_at: Option<String>,
pub labels: Vec<String>,
pub dependencies: Vec<DiffDependency>,
pub comments: Vec<DiffComment>,
}Fields§
§id: String§title: String§description: String§status: String§priority: i32§issue_type: String§assignee: Option<String>§created_at: String§updated_at: String§closed_at: Option<String>§labels: Vec<String>§dependencies: Vec<DiffDependency>§comments: Vec<DiffComment>Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiffIssue
impl RefUnwindSafe for DiffIssue
impl Send for DiffIssue
impl Sync for DiffIssue
impl Unpin for DiffIssue
impl UnsafeUnpin for DiffIssue
impl UnwindSafe for DiffIssue
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