pub struct Repository {Show 53 fields
pub id: u64,
pub owner: User,
pub name: String,
pub full_name: String,
pub description: String,
pub empty: bool,
pub private: bool,
pub fork: bool,
pub template: bool,
pub mirror: bool,
pub size: i64,
pub language: String,
pub languages_url: String,
pub html_url: String,
pub url: String,
pub link: String,
pub ssh_url: String,
pub clone_url: String,
pub original_url: String,
pub website: String,
pub stars_count: i64,
pub forks_count: i64,
pub watchers_count: i64,
pub open_issues_count: i64,
pub open_pr_counter: i64,
pub release_counter: i64,
pub default_branch: String,
pub archived: bool,
pub created_at: String,
pub updated_at: String,
pub archived_at: String,
pub permissions: Permissions,
pub has_issues: bool,
pub internal_tracker: InternalTracker,
pub has_wiki: bool,
pub has_pull_requests: bool,
pub has_projects: bool,
pub has_releases: bool,
pub has_packages: bool,
pub has_actions: bool,
pub ignore_whitespace_conflicts: bool,
pub allow_merge_commits: bool,
pub allow_rebase: bool,
pub allow_rebase_explicit: bool,
pub allow_squash_merge: bool,
pub allow_rebase_update: bool,
pub default_delete_branch_after_merge: bool,
pub default_merge_style: String,
pub default_allow_maintainer_edit: bool,
pub avatar_url: String,
pub internal: bool,
pub mirror_interval: String,
pub mirror_updated: String,
}Fields§
§id: u64§owner: User§name: String§full_name: String§description: String§empty: bool§private: bool§fork: bool§template: bool§mirror: bool§size: i64§language: String§languages_url: String§html_url: String§url: String§link: String§ssh_url: String§clone_url: String§original_url: String§website: String§stars_count: i64§forks_count: i64§watchers_count: i64§open_issues_count: i64§open_pr_counter: i64§release_counter: i64§default_branch: String§archived: bool§created_at: String§updated_at: String§archived_at: String§permissions: Permissions§has_issues: bool§internal_tracker: InternalTracker§has_wiki: bool§has_pull_requests: bool§has_projects: bool§has_releases: bool§has_packages: bool§has_actions: bool§ignore_whitespace_conflicts: bool§allow_merge_commits: bool§allow_rebase: bool§allow_rebase_explicit: bool§allow_squash_merge: bool§allow_rebase_update: bool§default_delete_branch_after_merge: bool§default_merge_style: String§default_allow_maintainer_edit: bool§avatar_url: String§internal: bool§mirror_interval: String§mirror_updated: StringTrait Implementations§
Source§impl Clone for Repository
impl Clone for Repository
Source§fn clone(&self) -> Repository
fn clone(&self) -> Repository
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 Debug for Repository
impl Debug for Repository
Source§impl<'de> Deserialize<'de> for Repository
impl<'de> Deserialize<'de> for Repository
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 Repository
impl RefUnwindSafe for Repository
impl Send for Repository
impl Sync for Repository
impl Unpin for Repository
impl UnwindSafe for Repository
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