pub struct AppsCreateFromManifest201Response {Show 17 fields
pub id: i32,
pub slug: Option<String>,
pub node_id: String,
pub owner: Option<Box<NullableSimpleUser>>,
pub name: String,
pub description: Option<String>,
pub external_url: String,
pub html_url: String,
pub created_at: String,
pub updated_at: String,
pub permissions: IntegrationPermissions,
pub events: Vec<String>,
pub installations_count: Option<i32>,
pub client_id: String,
pub client_secret: String,
pub webhook_secret: Option<String>,
pub pem: String,
}
Fields§
§id: i32
Unique identifier of the GitHub app
slug: Option<String>
The slug name of the GitHub app
node_id: String
§owner: Option<Box<NullableSimpleUser>>
§name: String
The name of the GitHub app
description: Option<String>
§external_url: String
§html_url: String
§created_at: String
§updated_at: String
§permissions: IntegrationPermissions
§events: Vec<String>
The list of events for the GitHub app
installations_count: Option<i32>
The number of installations associated with the GitHub app
client_id: String
§client_secret: String
§webhook_secret: Option<String>
§pem: String
Implementations§
Source§impl AppsCreateFromManifest201Response
impl AppsCreateFromManifest201Response
pub fn new( id: i32, node_id: String, owner: Option<NullableSimpleUser>, name: String, description: Option<String>, external_url: String, html_url: String, created_at: String, updated_at: String, permissions: IntegrationPermissions, events: Vec<String>, client_id: String, client_secret: String, webhook_secret: Option<String>, pem: String, ) -> AppsCreateFromManifest201Response
Trait Implementations§
Source§impl Clone for AppsCreateFromManifest201Response
impl Clone for AppsCreateFromManifest201Response
Source§fn clone(&self) -> AppsCreateFromManifest201Response
fn clone(&self) -> AppsCreateFromManifest201Response
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 Default for AppsCreateFromManifest201Response
impl Default for AppsCreateFromManifest201Response
Source§fn default() -> AppsCreateFromManifest201Response
fn default() -> AppsCreateFromManifest201Response
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AppsCreateFromManifest201Response
impl<'de> Deserialize<'de> for AppsCreateFromManifest201Response
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 AppsCreateFromManifest201Response
impl PartialEq for AppsCreateFromManifest201Response
Source§fn eq(&self, other: &AppsCreateFromManifest201Response) -> bool
fn eq(&self, other: &AppsCreateFromManifest201Response) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AppsCreateFromManifest201Response
Auto Trait Implementations§
impl Freeze for AppsCreateFromManifest201Response
impl RefUnwindSafe for AppsCreateFromManifest201Response
impl Send for AppsCreateFromManifest201Response
impl Sync for AppsCreateFromManifest201Response
impl Unpin for AppsCreateFromManifest201Response
impl UnwindSafe for AppsCreateFromManifest201Response
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