pub struct WebhookInstallationUnsuspend {
pub action: Action,
pub enterprise: Option<Box<EnterpriseWebhooks>>,
pub installation: Box<Installation>,
pub organization: Option<Box<OrganizationSimpleWebhooks>>,
pub repositories: Option<Vec<WebhooksRepositoriesInner>>,
pub repository: Option<Box<RepositoryWebhooks>>,
pub requester: Option<Option<Value>>,
pub sender: Box<SimpleUserWebhooks>,
}
Fields§
§action: Action
§enterprise: Option<Box<EnterpriseWebhooks>>
§installation: Box<Installation>
§organization: Option<Box<OrganizationSimpleWebhooks>>
§repositories: Option<Vec<WebhooksRepositoriesInner>>
An array of repository objects that the installation can access.
repository: Option<Box<RepositoryWebhooks>>
§requester: Option<Option<Value>>
§sender: Box<SimpleUserWebhooks>
Implementations§
Source§impl WebhookInstallationUnsuspend
impl WebhookInstallationUnsuspend
pub fn new( action: Action, installation: Installation, sender: SimpleUserWebhooks, ) -> WebhookInstallationUnsuspend
Trait Implementations§
Source§impl Clone for WebhookInstallationUnsuspend
impl Clone for WebhookInstallationUnsuspend
Source§fn clone(&self) -> WebhookInstallationUnsuspend
fn clone(&self) -> WebhookInstallationUnsuspend
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 WebhookInstallationUnsuspend
impl Debug for WebhookInstallationUnsuspend
Source§impl Default for WebhookInstallationUnsuspend
impl Default for WebhookInstallationUnsuspend
Source§fn default() -> WebhookInstallationUnsuspend
fn default() -> WebhookInstallationUnsuspend
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookInstallationUnsuspend
impl<'de> Deserialize<'de> for WebhookInstallationUnsuspend
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 WebhookInstallationUnsuspend
impl PartialEq for WebhookInstallationUnsuspend
Source§fn eq(&self, other: &WebhookInstallationUnsuspend) -> bool
fn eq(&self, other: &WebhookInstallationUnsuspend) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WebhookInstallationUnsuspend
Auto Trait Implementations§
impl Freeze for WebhookInstallationUnsuspend
impl RefUnwindSafe for WebhookInstallationUnsuspend
impl Send for WebhookInstallationUnsuspend
impl Sync for WebhookInstallationUnsuspend
impl Unpin for WebhookInstallationUnsuspend
impl UnwindSafe for WebhookInstallationUnsuspend
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