pub struct IssueCommentEditedChanges {
pub body: Option<IssueCommentEditedChangesBody>,
}
Expand description
The changes to the comment.
JSON schema
{
"description": "The changes to the comment.",
"type": "object",
"properties": {
"body": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"description": "The previous version of the body.",
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
Fields§
§body: Option<IssueCommentEditedChangesBody>
Implementations§
Source§impl IssueCommentEditedChanges
impl IssueCommentEditedChanges
pub fn builder() -> IssueCommentEditedChanges
Trait Implementations§
Source§impl Clone for IssueCommentEditedChanges
impl Clone for IssueCommentEditedChanges
Source§fn clone(&self) -> IssueCommentEditedChanges
fn clone(&self) -> IssueCommentEditedChanges
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 IssueCommentEditedChanges
impl Debug for IssueCommentEditedChanges
Source§impl<'de> Deserialize<'de> for IssueCommentEditedChanges
impl<'de> Deserialize<'de> for IssueCommentEditedChanges
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<&IssueCommentEditedChanges> for IssueCommentEditedChanges
impl From<&IssueCommentEditedChanges> for IssueCommentEditedChanges
Source§fn from(value: &IssueCommentEditedChanges) -> Self
fn from(value: &IssueCommentEditedChanges) -> Self
Converts to this type from the input type.
Source§impl From<IssueCommentEditedChanges> for IssueCommentEditedChanges
impl From<IssueCommentEditedChanges> for IssueCommentEditedChanges
Source§fn from(value: IssueCommentEditedChanges) -> Self
fn from(value: IssueCommentEditedChanges) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IssueCommentEditedChanges
impl RefUnwindSafe for IssueCommentEditedChanges
impl Send for IssueCommentEditedChanges
impl Sync for IssueCommentEditedChanges
impl Unpin for IssueCommentEditedChanges
impl UnwindSafe for IssueCommentEditedChanges
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