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