pub struct WebIssueComment {
pub created_at: Option<String>,
pub author: Option<Value>,
pub reactions: Option<Vec<Value>>,
pub body: Option<String>,
pub updated_at: Option<String>,
pub author_meta: Option<Vec<i64>>,
pub comment_id: Option<String>,
}
Expand description
WebIssueComment 模型
Fields§
§created_at: Option<String>
§reactions: Option<Vec<Value>>
§body: Option<String>
§updated_at: Option<String>
§comment_id: Option<String>
Trait Implementations§
Source§impl Clone for WebIssueComment
impl Clone for WebIssueComment
Source§fn clone(&self) -> WebIssueComment
fn clone(&self) -> WebIssueComment
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 WebIssueComment
impl Debug for WebIssueComment
Source§impl<'de> Deserialize<'de> for WebIssueComment
impl<'de> Deserialize<'de> for WebIssueComment
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 WebIssueComment
impl RefUnwindSafe for WebIssueComment
impl Send for WebIssueComment
impl Sync for WebIssueComment
impl Unpin for WebIssueComment
impl UnwindSafe for WebIssueComment
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