pub struct AppCredentials {
pub id: u64,
pub slug: String,
pub node_id: String,
pub owner: Value,
pub name: String,
pub html_url: String,
pub pem: String,
pub webhook_secret: Option<String>,
pub client_id: String,
pub client_secret: String,
pub installation_id: Option<u64>,
}Expand description
Permanent credentials returned by the manifest exchange.
Fields§
§id: u64§slug: String§node_id: String§owner: Value§name: String§html_url: String§pem: String§webhook_secret: Option<String>§client_id: String§client_secret: String§installation_id: Option<u64>Installation ID — populated AFTER the operator installs the app on the
target org/user. Empty after create; filled by the install step.
Trait Implementations§
Source§impl Clone for AppCredentials
impl Clone for AppCredentials
Source§fn clone(&self) -> AppCredentials
fn clone(&self) -> AppCredentials
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AppCredentials
impl Debug for AppCredentials
Source§impl<'de> Deserialize<'de> for AppCredentials
impl<'de> Deserialize<'de> for AppCredentials
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 Freeze for AppCredentials
impl RefUnwindSafe for AppCredentials
impl Send for AppCredentials
impl Sync for AppCredentials
impl Unpin for AppCredentials
impl UnsafeUnpin for AppCredentials
impl UnwindSafe for AppCredentials
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