pub struct IntegrationInstallationRequestAccount {Show 26 fields
pub name: String,
pub email: Option<Option<String>>,
pub login: String,
pub id: i32,
pub node_id: String,
pub avatar_url: String,
pub gravatar_id: Option<String>,
pub url: String,
pub html_url: String,
pub followers_url: String,
pub following_url: String,
pub gists_url: String,
pub starred_url: String,
pub subscriptions_url: String,
pub organizations_url: String,
pub repos_url: String,
pub events_url: String,
pub received_events_url: String,
pub type: String,
pub site_admin: bool,
pub starred_at: Option<String>,
pub description: Option<Option<String>>,
pub website_url: Option<Option<String>>,
pub slug: String,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}
Fields§
§name: String
The name of the enterprise.
email: Option<Option<String>>
§login: String
§id: i32
Unique identifier of the enterprise
node_id: String
§avatar_url: String
§gravatar_id: Option<String>
§url: String
§html_url: String
§followers_url: String
§following_url: String
§gists_url: String
§starred_url: String
§subscriptions_url: String
§organizations_url: String
§repos_url: String
§events_url: String
§received_events_url: String
§type: String
§site_admin: bool
§starred_at: Option<String>
§description: Option<Option<String>>
A short description of the enterprise.
website_url: Option<Option<String>>
The enterprise’s website URL.
slug: String
The slug url identifier for the enterprise.
created_at: Option<String>
§updated_at: Option<String>
Implementations§
Source§impl IntegrationInstallationRequestAccount
impl IntegrationInstallationRequestAccount
pub fn new( name: String, login: String, id: i32, node_id: String, avatar_url: String, gravatar_id: Option<String>, url: String, html_url: String, followers_url: String, following_url: String, gists_url: String, starred_url: String, subscriptions_url: String, organizations_url: String, repos_url: String, events_url: String, received_events_url: String, type: String, site_admin: bool, slug: String, created_at: Option<String>, updated_at: Option<String>, ) -> IntegrationInstallationRequestAccount
Trait Implementations§
Source§impl Clone for IntegrationInstallationRequestAccount
impl Clone for IntegrationInstallationRequestAccount
Source§fn clone(&self) -> IntegrationInstallationRequestAccount
fn clone(&self) -> IntegrationInstallationRequestAccount
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 IntegrationInstallationRequestAccount
impl Default for IntegrationInstallationRequestAccount
Source§fn default() -> IntegrationInstallationRequestAccount
fn default() -> IntegrationInstallationRequestAccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationInstallationRequestAccount
impl<'de> Deserialize<'de> for IntegrationInstallationRequestAccount
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 IntegrationInstallationRequestAccount
impl PartialEq for IntegrationInstallationRequestAccount
Source§fn eq(&self, other: &IntegrationInstallationRequestAccount) -> bool
fn eq(&self, other: &IntegrationInstallationRequestAccount) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IntegrationInstallationRequestAccount
Auto Trait Implementations§
impl Freeze for IntegrationInstallationRequestAccount
impl RefUnwindSafe for IntegrationInstallationRequestAccount
impl Send for IntegrationInstallationRequestAccount
impl Sync for IntegrationInstallationRequestAccount
impl Unpin for IntegrationInstallationRequestAccount
impl UnwindSafe for IntegrationInstallationRequestAccount
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