pub struct WebhookProjectsV2ItemConverted {
pub action: Action,
pub changes: Box<WebhookProjectsV2ItemConvertedChanges>,
pub installation: Option<Box<SimpleInstallation>>,
pub organization: Box<OrganizationSimpleWebhooks>,
pub projects_v2_item: Box<ProjectsV2Item>,
pub sender: Box<SimpleUserWebhooks>,
}
Fields§
§action: Action
§changes: Box<WebhookProjectsV2ItemConvertedChanges>
§installation: Option<Box<SimpleInstallation>>
§organization: Box<OrganizationSimpleWebhooks>
§projects_v2_item: Box<ProjectsV2Item>
§sender: Box<SimpleUserWebhooks>
Implementations§
Source§impl WebhookProjectsV2ItemConverted
impl WebhookProjectsV2ItemConverted
pub fn new( action: Action, changes: WebhookProjectsV2ItemConvertedChanges, organization: OrganizationSimpleWebhooks, projects_v2_item: ProjectsV2Item, sender: SimpleUserWebhooks, ) -> WebhookProjectsV2ItemConverted
Trait Implementations§
Source§impl Clone for WebhookProjectsV2ItemConverted
impl Clone for WebhookProjectsV2ItemConverted
Source§fn clone(&self) -> WebhookProjectsV2ItemConverted
fn clone(&self) -> WebhookProjectsV2ItemConverted
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 WebhookProjectsV2ItemConverted
impl Default for WebhookProjectsV2ItemConverted
Source§fn default() -> WebhookProjectsV2ItemConverted
fn default() -> WebhookProjectsV2ItemConverted
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookProjectsV2ItemConverted
impl<'de> Deserialize<'de> for WebhookProjectsV2ItemConverted
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 WebhookProjectsV2ItemConverted
impl PartialEq for WebhookProjectsV2ItemConverted
Source§fn eq(&self, other: &WebhookProjectsV2ItemConverted) -> bool
fn eq(&self, other: &WebhookProjectsV2ItemConverted) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookProjectsV2ItemConverted
Auto Trait Implementations§
impl Freeze for WebhookProjectsV2ItemConverted
impl RefUnwindSafe for WebhookProjectsV2ItemConverted
impl Send for WebhookProjectsV2ItemConverted
impl Sync for WebhookProjectsV2ItemConverted
impl Unpin for WebhookProjectsV2ItemConverted
impl UnwindSafe for WebhookProjectsV2ItemConverted
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