pub struct App9 {
pub created_at: Option<String>,
pub description: Option<String>,
pub events: Option<Vec<Events>>,
pub external_url: Option<String>,
pub html_url: String,
pub id: Option<i32>,
pub name: String,
pub node_id: String,
pub owner: Option<Box<User>>,
pub permissions: Option<Box<AppPermissions>>,
pub slug: Option<String>,
pub updated_at: Option<String>,
}
Expand description
App9 : 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<String>
§description: Option<String>
§events: Option<Vec<Events>>
The list of events for the GitHub app
external_url: Option<String>
§html_url: String
§id: Option<i32>
Unique identifier of the GitHub app
name: String
The name of the GitHub app
node_id: String
§owner: Option<Box<User>>
§permissions: Option<Box<AppPermissions>>
§slug: Option<String>
The slug name of the GitHub app
updated_at: Option<String>
Implementations§
Source§impl App9
impl App9
Sourcepub fn new(
created_at: Option<String>,
description: Option<String>,
external_url: Option<String>,
html_url: String,
id: Option<i32>,
name: String,
node_id: String,
owner: Option<User>,
updated_at: Option<String>,
) -> App9
pub fn new( created_at: Option<String>, description: Option<String>, external_url: Option<String>, html_url: String, id: Option<i32>, name: String, node_id: String, owner: Option<User>, updated_at: Option<String>, ) -> App9
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.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for App9
impl<'de> Deserialize<'de> for App9
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 App9
Auto Trait Implementations§
impl Freeze for App9
impl RefUnwindSafe for App9
impl Send for App9
impl Sync for App9
impl Unpin for App9
impl UnwindSafe for App9
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