pub struct GitHubInstallationResource {
pub id: Uuid,
pub installation_id: i64,
pub owner_id: Uuid,
pub installation_type: String,
pub github_login: String,
pub created_at: DateTime<Utc>,
}Fields§
§id: Uuid§installation_id: i64§owner_id: Uuid§installation_type: String§github_login: String§created_at: DateTime<Utc>Trait Implementations§
impl ApiResource for GitHubInstallationResource
Source§impl Clone for GitHubInstallationResource
impl Clone for GitHubInstallationResource
Source§fn clone(&self) -> GitHubInstallationResource
fn clone(&self) -> GitHubInstallationResource
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 GitHubInstallationResource
impl Debug for GitHubInstallationResource
Source§impl<'de> Deserialize<'de> for GitHubInstallationResource
impl<'de> Deserialize<'de> for GitHubInstallationResource
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 Eq for GitHubInstallationResource
Source§impl PartialEq for GitHubInstallationResource
impl PartialEq for GitHubInstallationResource
Source§fn eq(&self, other: &GitHubInstallationResource) -> bool
fn eq(&self, other: &GitHubInstallationResource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GitHubInstallationResource
Auto Trait Implementations§
impl Freeze for GitHubInstallationResource
impl RefUnwindSafe for GitHubInstallationResource
impl Send for GitHubInstallationResource
impl Sync for GitHubInstallationResource
impl Unpin for GitHubInstallationResource
impl UnsafeUnpin for GitHubInstallationResource
impl UnwindSafe for GitHubInstallationResource
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