pub struct PullRequestReviewCommentDeletedPullRequestLinks {
pub comments: Link,
pub commits: Link,
pub html: Link,
pub issue: Link,
pub review_comment: Link,
pub review_comments: Link,
pub self_: Link,
pub statuses: Link,
}
Expand description
PullRequestReviewCommentDeletedPullRequestLinks
JSON schema
{
"type": "object",
"required": [
"comments",
"commits",
"html",
"issue",
"review_comment",
"review_comments",
"self",
"statuses"
],
"properties": {
"comments": {
"$ref": "#/definitions/link"
},
"commits": {
"$ref": "#/definitions/link"
},
"html": {
"$ref": "#/definitions/link"
},
"issue": {
"$ref": "#/definitions/link"
},
"review_comment": {
"$ref": "#/definitions/link"
},
"review_comments": {
"$ref": "#/definitions/link"
},
"self": {
"$ref": "#/definitions/link"
},
"statuses": {
"$ref": "#/definitions/link"
}
},
"additionalProperties": false
}
Fields§
§comments: Link
§commits: Link
§html: Link
§issue: Link
§review_comment: Link
§review_comments: Link
§self_: Link
§statuses: Link
Implementations§
Trait Implementations§
Source§impl Clone for PullRequestReviewCommentDeletedPullRequestLinks
impl Clone for PullRequestReviewCommentDeletedPullRequestLinks
Source§fn clone(&self) -> PullRequestReviewCommentDeletedPullRequestLinks
fn clone(&self) -> PullRequestReviewCommentDeletedPullRequestLinks
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 PullRequestReviewCommentDeletedPullRequestLinks
impl<'de> Deserialize<'de> for PullRequestReviewCommentDeletedPullRequestLinks
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<&PullRequestReviewCommentDeletedPullRequestLinks> for PullRequestReviewCommentDeletedPullRequestLinks
impl From<&PullRequestReviewCommentDeletedPullRequestLinks> for PullRequestReviewCommentDeletedPullRequestLinks
Source§fn from(value: &PullRequestReviewCommentDeletedPullRequestLinks) -> Self
fn from(value: &PullRequestReviewCommentDeletedPullRequestLinks) -> Self
Converts to this type from the input type.
Source§impl From<PullRequestReviewCommentDeletedPullRequestLinks> for PullRequestReviewCommentDeletedPullRequestLinks
impl From<PullRequestReviewCommentDeletedPullRequestLinks> for PullRequestReviewCommentDeletedPullRequestLinks
Source§fn from(value: PullRequestReviewCommentDeletedPullRequestLinks) -> Self
fn from(value: PullRequestReviewCommentDeletedPullRequestLinks) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PullRequestReviewCommentDeletedPullRequestLinks
impl RefUnwindSafe for PullRequestReviewCommentDeletedPullRequestLinks
impl Send for PullRequestReviewCommentDeletedPullRequestLinks
impl Sync for PullRequestReviewCommentDeletedPullRequestLinks
impl Unpin for PullRequestReviewCommentDeletedPullRequestLinks
impl UnwindSafe for PullRequestReviewCommentDeletedPullRequestLinks
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