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