pub struct Issue {Show 21 fields
pub id: String,
pub identifier: String,
pub team_key: String,
pub title: String,
pub description: Option<String>,
pub state_name: String,
pub state_type: String,
pub priority: i32,
pub assignee_name: Option<String>,
pub project_name: Option<String>,
pub labels_json: String,
pub created_at: String,
pub updated_at: String,
pub content_hash: String,
pub synced_at: Option<String>,
pub url: String,
pub branch_name: Option<String>,
pub workspace_id: String,
pub project_id: Option<String>,
pub project_milestone_id: Option<String>,
pub project_milestone_name: Option<String>,
}Fields§
§id: String§identifier: String§team_key: String§title: String§description: Option<String>§state_name: String§state_type: String§priority: i32§assignee_name: Option<String>§project_name: Option<String>§labels_json: String§created_at: String§updated_at: String§content_hash: String§synced_at: Option<String>§url: String§branch_name: Option<String>§workspace_id: String§project_id: Option<String>§project_milestone_id: Option<String>§project_milestone_name: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Issue
impl<'de> Deserialize<'de> for Issue
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 Issue
impl RefUnwindSafe for Issue
impl Send for Issue
impl Sync for Issue
impl Unpin for Issue
impl UnsafeUnpin for Issue
impl UnwindSafe for Issue
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