pub struct PullRequestReviewThreadResolved {
pub action: PullRequestReviewThreadResolvedAction,
pub installation: Option<InstallationLite>,
pub organization: Option<Organization>,
pub pull_request: SimplePullRequest,
pub repository: Repository,
pub sender: User,
pub thread: PullRequestReviewThreadResolvedThread,
}
Expand description
PullRequestReviewThreadResolved
JSON schema
{
"title": "pull_request_review_thread resolved event",
"type": "object",
"required": [
"action",
"pull_request",
"repository",
"sender",
"thread"
],
"properties": {
"action": {
"type": "string",
"enum": [
"resolved"
]
},
"installation": {
"$ref": "#/definitions/installation-lite"
},
"organization": {
"$ref": "#/definitions/organization"
},
"pull_request": {
"$ref": "#/definitions/simple-pull-request"
},
"repository": {
"$ref": "#/definitions/repository"
},
"sender": {
"$ref": "#/definitions/user"
},
"thread": {
"type": "object",
"required": [
"comments",
"node_id"
],
"properties": {
"comments": {
"type": "array",
"items": {
"$ref": "#/definitions/pull-request-review-comment"
}
},
"node_id": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema"
}
Fields§
§action: PullRequestReviewThreadResolvedAction
§installation: Option<InstallationLite>
§organization: Option<Organization>
§pull_request: SimplePullRequest
§repository: Repository
§sender: User
§thread: PullRequestReviewThreadResolvedThread
Implementations§
Trait Implementations§
Source§impl Clone for PullRequestReviewThreadResolved
impl Clone for PullRequestReviewThreadResolved
Source§fn clone(&self) -> PullRequestReviewThreadResolved
fn clone(&self) -> PullRequestReviewThreadResolved
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 PullRequestReviewThreadResolved
impl<'de> Deserialize<'de> for PullRequestReviewThreadResolved
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
Source§impl From<&PullRequestReviewThreadResolved> for PullRequestReviewThreadResolved
impl From<&PullRequestReviewThreadResolved> for PullRequestReviewThreadResolved
Source§fn from(value: &PullRequestReviewThreadResolved) -> Self
fn from(value: &PullRequestReviewThreadResolved) -> Self
Converts to this type from the input type.
Source§impl From<PullRequestReviewThreadResolved> for PullRequestReviewThreadEvent
impl From<PullRequestReviewThreadResolved> for PullRequestReviewThreadEvent
Source§fn from(value: PullRequestReviewThreadResolved) -> Self
fn from(value: PullRequestReviewThreadResolved) -> Self
Converts to this type from the input type.
Source§impl From<PullRequestReviewThreadResolved> for PullRequestReviewThreadResolved
impl From<PullRequestReviewThreadResolved> for PullRequestReviewThreadResolved
Source§fn from(value: PullRequestReviewThreadResolved) -> Self
fn from(value: PullRequestReviewThreadResolved) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PullRequestReviewThreadResolved
impl RefUnwindSafe for PullRequestReviewThreadResolved
impl Send for PullRequestReviewThreadResolved
impl Sync for PullRequestReviewThreadResolved
impl Unpin for PullRequestReviewThreadResolved
impl UnwindSafe for PullRequestReviewThreadResolved
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