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