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