pub struct IssueCommentCreatedIssuePullRequest {
pub diff_url: Option<String>,
pub html_url: Option<String>,
pub merged_at: Option<DateTime<Utc>>,
pub patch_url: Option<String>,
pub url: Option<String>,
}
Expand description
IssueCommentCreatedIssuePullRequest
JSON schema
{
"type": "object",
"properties": {
"diff_url": {
"type": "string",
"format": "uri"
},
"html_url": {
"type": "string",
"format": "uri"
},
"merged_at": {
"type": [
"string",
"null"
],
"format": "date-time"
},
"patch_url": {
"type": "string",
"format": "uri"
},
"url": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": false
}
Fields§
§diff_url: Option<String>
§html_url: Option<String>
§merged_at: Option<DateTime<Utc>>
§patch_url: Option<String>
§url: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for IssueCommentCreatedIssuePullRequest
impl Clone for IssueCommentCreatedIssuePullRequest
Source§fn clone(&self) -> IssueCommentCreatedIssuePullRequest
fn clone(&self) -> IssueCommentCreatedIssuePullRequest
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 IssueCommentCreatedIssuePullRequest
impl<'de> Deserialize<'de> for IssueCommentCreatedIssuePullRequest
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<&IssueCommentCreatedIssuePullRequest> for IssueCommentCreatedIssuePullRequest
impl From<&IssueCommentCreatedIssuePullRequest> for IssueCommentCreatedIssuePullRequest
Source§fn from(value: &IssueCommentCreatedIssuePullRequest) -> Self
fn from(value: &IssueCommentCreatedIssuePullRequest) -> Self
Converts to this type from the input type.
Source§impl From<IssueCommentCreatedIssuePullRequest> for IssueCommentCreatedIssuePullRequest
impl From<IssueCommentCreatedIssuePullRequest> for IssueCommentCreatedIssuePullRequest
Source§fn from(value: IssueCommentCreatedIssuePullRequest) -> Self
fn from(value: IssueCommentCreatedIssuePullRequest) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IssueCommentCreatedIssuePullRequest
impl RefUnwindSafe for IssueCommentCreatedIssuePullRequest
impl Send for IssueCommentCreatedIssuePullRequest
impl Sync for IssueCommentCreatedIssuePullRequest
impl Unpin for IssueCommentCreatedIssuePullRequest
impl UnwindSafe for IssueCommentCreatedIssuePullRequest
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