pub struct InstallationTargetRenamedEvent<'a> {
pub changes: InstallationTargetRenamedEventChanges<'a>,
pub account: InstallationTargetRenamedEventAccount<'a>,
pub repository: Option<Repository<'a>>,
pub sender: Option<User<'a>>,
pub installation: InstallationLite<'a>,
pub organization: Option<Organization<'a>>,
pub target_type: &'a str,
}
Expand description
Somebody renamed the user or organization account that a GitHub App is installed on.
Fields§
§changes: InstallationTargetRenamedEventChanges<'a>
§account: InstallationTargetRenamedEventAccount<'a>
§repository: Option<Repository<'a>>
§sender: Option<User<'a>>
§installation: InstallationLite<'a>
§organization: Option<Organization<'a>>
§target_type: &'a str
Trait Implementations§
source§impl<'a> Debug for InstallationTargetRenamedEvent<'a>
impl<'a> Debug for InstallationTargetRenamedEvent<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for InstallationTargetRenamedEvent<'a>
impl<'de: 'a, 'a> Deserialize<'de> for InstallationTargetRenamedEvent<'a>
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
Auto Trait Implementations§
impl<'a> RefUnwindSafe for InstallationTargetRenamedEvent<'a>
impl<'a> Send for InstallationTargetRenamedEvent<'a>
impl<'a> Sync for InstallationTargetRenamedEvent<'a>
impl<'a> Unpin for InstallationTargetRenamedEvent<'a>
impl<'a> UnwindSafe for InstallationTargetRenamedEvent<'a>
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