pub struct WebPullRequestReviewComment {Show 21 fields
pub subject_type: Option<String>,
pub start_side: Option<String>,
pub diff_hunk: Option<Vec<Value>>,
pub author_meta: Option<Vec<i64>>,
pub commit_hash: Option<String>,
pub created_at: Option<String>,
pub deleted: Option<bool>,
pub end_side: Option<String>,
pub path: Option<String>,
pub reply_to_comment_id: Option<String>,
pub review_state: Option<String>,
pub comment_id: Option<String>,
pub start_line: Option<i64>,
pub replies: Option<Vec<Value>>,
pub end_line: Option<i64>,
pub delete_payload: Option<Value>,
pub body: Option<String>,
pub author: Option<Value>,
pub reactions: Option<Vec<Value>>,
pub review_id: Option<String>,
pub updated_at: Option<String>,
}
Expand description
WebPullRequestReviewComment 模型
Fields§
§subject_type: Option<String>
§start_side: Option<String>
§diff_hunk: Option<Vec<Value>>
§commit_hash: Option<String>
§created_at: Option<String>
§deleted: Option<bool>
§end_side: Option<String>
§path: Option<String>
§reply_to_comment_id: Option<String>
§review_state: Option<String>
§comment_id: Option<String>
§start_line: Option<i64>
§replies: Option<Vec<Value>>
§end_line: Option<i64>
§delete_payload: Option<Value>
§body: Option<String>
§reactions: Option<Vec<Value>>
§review_id: Option<String>
§updated_at: Option<String>
Trait Implementations§
Source§impl Clone for WebPullRequestReviewComment
impl Clone for WebPullRequestReviewComment
Source§fn clone(&self) -> WebPullRequestReviewComment
fn clone(&self) -> WebPullRequestReviewComment
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 WebPullRequestReviewComment
impl Debug for WebPullRequestReviewComment
Source§impl<'de> Deserialize<'de> for WebPullRequestReviewComment
impl<'de> Deserialize<'de> for WebPullRequestReviewComment
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 WebPullRequestReviewComment
impl RefUnwindSafe for WebPullRequestReviewComment
impl Send for WebPullRequestReviewComment
impl Sync for WebPullRequestReviewComment
impl Unpin for WebPullRequestReviewComment
impl UnwindSafe for WebPullRequestReviewComment
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