pub struct WebhookMilestoneEditedChanges {
pub description: Option<Box<WebhookLabelEditedChangesDescription>>,
pub due_on: Option<Box<WebhookMilestoneEditedChangesDueOn>>,
pub title: Option<Box<WebhookMilestoneEditedChangesTitle>>,
}
Expand description
WebhookMilestoneEditedChanges : The changes to the milestone if the action was edited
.
Fields§
§description: Option<Box<WebhookLabelEditedChangesDescription>>
§due_on: Option<Box<WebhookMilestoneEditedChangesDueOn>>
§title: Option<Box<WebhookMilestoneEditedChangesTitle>>
Implementations§
Source§impl WebhookMilestoneEditedChanges
impl WebhookMilestoneEditedChanges
Sourcepub fn new() -> WebhookMilestoneEditedChanges
pub fn new() -> WebhookMilestoneEditedChanges
The changes to the milestone if the action was edited
.
Trait Implementations§
Source§impl Clone for WebhookMilestoneEditedChanges
impl Clone for WebhookMilestoneEditedChanges
Source§fn clone(&self) -> WebhookMilestoneEditedChanges
fn clone(&self) -> WebhookMilestoneEditedChanges
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 Default for WebhookMilestoneEditedChanges
impl Default for WebhookMilestoneEditedChanges
Source§fn default() -> WebhookMilestoneEditedChanges
fn default() -> WebhookMilestoneEditedChanges
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookMilestoneEditedChanges
impl<'de> Deserialize<'de> for WebhookMilestoneEditedChanges
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 PartialEq for WebhookMilestoneEditedChanges
impl PartialEq for WebhookMilestoneEditedChanges
Source§fn eq(&self, other: &WebhookMilestoneEditedChanges) -> bool
fn eq(&self, other: &WebhookMilestoneEditedChanges) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookMilestoneEditedChanges
Auto Trait Implementations§
impl Freeze for WebhookMilestoneEditedChanges
impl RefUnwindSafe for WebhookMilestoneEditedChanges
impl Send for WebhookMilestoneEditedChanges
impl Sync for WebhookMilestoneEditedChanges
impl Unpin for WebhookMilestoneEditedChanges
impl UnwindSafe for WebhookMilestoneEditedChanges
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