pub struct MilestoneEditedChanges {
pub description: Option<MilestoneEditedChangesDescription>,
pub due_on: Option<MilestoneEditedChangesDueOn>,
pub title: Option<MilestoneEditedChangesTitle>,
}
Expand description
The changes to the milestone if the action was edited
.
JSON schema
{
"description": "The changes to the milestone if the action was `edited`.",
"type": "object",
"properties": {
"description": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"description": "The previous version of the description if the action was `edited`.",
"type": "string"
}
},
"additionalProperties": false
},
"due_on": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"description": "The previous version of the due date if the action was `edited`.",
"type": "string"
}
},
"additionalProperties": false
},
"title": {
"type": "object",
"required": [
"from"
],
"properties": {
"from": {
"description": "The previous version of the title if the action was `edited`.",
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
Fields§
§description: Option<MilestoneEditedChangesDescription>
§due_on: Option<MilestoneEditedChangesDueOn>
§title: Option<MilestoneEditedChangesTitle>
Implementations§
Source§impl MilestoneEditedChanges
impl MilestoneEditedChanges
pub fn builder() -> MilestoneEditedChanges
Trait Implementations§
Source§impl Clone for MilestoneEditedChanges
impl Clone for MilestoneEditedChanges
Source§fn clone(&self) -> MilestoneEditedChanges
fn clone(&self) -> MilestoneEditedChanges
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 MilestoneEditedChanges
impl Debug for MilestoneEditedChanges
Source§impl<'de> Deserialize<'de> for MilestoneEditedChanges
impl<'de> Deserialize<'de> for MilestoneEditedChanges
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<&MilestoneEditedChanges> for MilestoneEditedChanges
impl From<&MilestoneEditedChanges> for MilestoneEditedChanges
Source§fn from(value: &MilestoneEditedChanges) -> Self
fn from(value: &MilestoneEditedChanges) -> Self
Converts to this type from the input type.
Source§impl From<MilestoneEditedChanges> for MilestoneEditedChanges
impl From<MilestoneEditedChanges> for MilestoneEditedChanges
Source§fn from(value: MilestoneEditedChanges) -> Self
fn from(value: MilestoneEditedChanges) -> Self
Converts to this type from the input type.
Source§impl Serialize for MilestoneEditedChanges
impl Serialize for MilestoneEditedChanges
Auto Trait Implementations§
impl Freeze for MilestoneEditedChanges
impl RefUnwindSafe for MilestoneEditedChanges
impl Send for MilestoneEditedChanges
impl Sync for MilestoneEditedChanges
impl Unpin for MilestoneEditedChanges
impl UnwindSafe for MilestoneEditedChanges
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