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