pub struct App5 {
pub created_at: Option<DateTime<Utc>>,
pub description: Option<String>,
pub events: Option<Vec<String>>,
pub external_url: Option<String>,
pub html_url: Option<String>,
pub id: Option<i64>,
pub name: Option<String>,
pub node_id: Option<String>,
pub owner: Option<User1>,
pub permissions: Option<App1Permissions>,
pub slug: Option<String>,
pub updated_at: Option<DateTime<Utc>>,
}Expand description
GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.
Fields§
§created_at: Option<DateTime<Utc>>§description: Option<String>§events: Option<Vec<String>>The list of events for the GitHub app
external_url: Option<String>§html_url: Option<String>§id: Option<i64>Unique identifier of the GitHub app
name: Option<String>The name of the GitHub app
node_id: Option<String>§owner: Option<User1>§permissions: Option<App1Permissions>§slug: Option<String>The slug name of the GitHub app
updated_at: Option<DateTime<Utc>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for App5
impl<'de> Deserialize<'de> for App5
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 App5
Auto Trait Implementations§
impl Freeze for App5
impl RefUnwindSafe for App5
impl Send for App5
impl Sync for App5
impl Unpin for App5
impl UnwindSafe for App5
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