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