pub struct WebIssueResource {Show 18 fields
pub id: Option<String>,
pub started_at: Option<String>,
pub last_acted_at: Option<String>,
pub state: Option<String>,
pub created_at: Option<String>,
pub customer_fields: Option<Vec<Value>>,
pub ended_at: Option<String>,
pub state_reason: Option<String>,
pub labels: Option<Vec<Value>>,
pub assignees: Option<Vec<Value>>,
pub title: Option<String>,
pub comment_count: Option<i64>,
pub repo_slug: Option<String>,
pub updated_at: Option<String>,
pub priority: Option<String>,
pub author: Option<Value>,
pub closed_at: Option<String>,
pub number: Option<String>,
}
Expand description
WebIssueResource 模型
Fields§
§id: Option<String>
§started_at: Option<String>
§last_acted_at: Option<String>
§state: Option<String>
§created_at: Option<String>
§customer_fields: Option<Vec<Value>>
§ended_at: Option<String>
§state_reason: Option<String>
§labels: Option<Vec<Value>>
§assignees: Option<Vec<Value>>
§title: Option<String>
§comment_count: Option<i64>
§repo_slug: Option<String>
§updated_at: Option<String>
§priority: Option<String>
§closed_at: Option<String>
§number: Option<String>
Trait Implementations§
Source§impl Clone for WebIssueResource
impl Clone for WebIssueResource
Source§fn clone(&self) -> WebIssueResource
fn clone(&self) -> WebIssueResource
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 WebIssueResource
impl Debug for WebIssueResource
Source§impl<'de> Deserialize<'de> for WebIssueResource
impl<'de> Deserialize<'de> for WebIssueResource
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 WebIssueResource
impl RefUnwindSafe for WebIssueResource
impl Send for WebIssueResource
impl Sync for WebIssueResource
impl Unpin for WebIssueResource
impl UnwindSafe for WebIssueResource
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