pub struct WebhookOrganizationRenamed {
pub action: Action,
pub changes: Option<Box<WebhookOrganizationRenamedChanges>>,
pub enterprise: Option<Box<EnterpriseWebhooks>>,
pub installation: Option<Box<SimpleInstallation>>,
pub membership: Option<Box<WebhooksMembership>>,
pub organization: Box<OrganizationSimpleWebhooks>,
pub repository: Option<Box<RepositoryWebhooks>>,
pub sender: Box<SimpleUserWebhooks>,
}
Fields§
§action: Action
§changes: Option<Box<WebhookOrganizationRenamedChanges>>
§enterprise: Option<Box<EnterpriseWebhooks>>
§installation: Option<Box<SimpleInstallation>>
§membership: Option<Box<WebhooksMembership>>
§organization: Box<OrganizationSimpleWebhooks>
§repository: Option<Box<RepositoryWebhooks>>
§sender: Box<SimpleUserWebhooks>
Implementations§
Source§impl WebhookOrganizationRenamed
impl WebhookOrganizationRenamed
pub fn new( action: Action, organization: OrganizationSimpleWebhooks, sender: SimpleUserWebhooks, ) -> WebhookOrganizationRenamed
Trait Implementations§
Source§impl Clone for WebhookOrganizationRenamed
impl Clone for WebhookOrganizationRenamed
Source§fn clone(&self) -> WebhookOrganizationRenamed
fn clone(&self) -> WebhookOrganizationRenamed
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 WebhookOrganizationRenamed
impl Debug for WebhookOrganizationRenamed
Source§impl Default for WebhookOrganizationRenamed
impl Default for WebhookOrganizationRenamed
Source§fn default() -> WebhookOrganizationRenamed
fn default() -> WebhookOrganizationRenamed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookOrganizationRenamed
impl<'de> Deserialize<'de> for WebhookOrganizationRenamed
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
impl StructuralPartialEq for WebhookOrganizationRenamed
Auto Trait Implementations§
impl Freeze for WebhookOrganizationRenamed
impl RefUnwindSafe for WebhookOrganizationRenamed
impl Send for WebhookOrganizationRenamed
impl Sync for WebhookOrganizationRenamed
impl Unpin for WebhookOrganizationRenamed
impl UnwindSafe for WebhookOrganizationRenamed
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