pub struct FullRepository {
Show 93 fields pub allow_auto_merge: bool, pub allow_merge_commit: bool, pub allow_rebase_merge: bool, pub allow_squash_merge: bool, pub anonymous_access_enabled: bool, pub archive_url: String, pub archived: bool, pub assignees_url: String, pub blobs_url: String, pub branches_url: String, pub clone_url: String, pub code_of_conduct: Option<CodeOfConductSimple>, pub collaborators_url: String, pub comments_url: String, pub commits_url: String, pub compare_url: String, pub contents_url: String, pub contributors_url: String, pub created_at: Option<DateTime<Utc>>, pub default_branch: String, pub delete_branch_on_merge: bool, pub deployments_url: String, pub description: String, pub disabled: bool, pub downloads_url: String, pub events_url: String, pub fork: bool, pub forks: i64, pub forks_count: i64, pub forks_url: String, pub full_name: String, pub git_commits_url: String, pub git_refs_url: String, pub git_tags_url: String, pub git_url: String, pub has_downloads: bool, pub has_issues: bool, pub has_pages: bool, pub has_projects: bool, pub has_wiki: bool, pub homepage: String, pub hooks_url: String, pub html_url: String, pub id: i64, pub is_template: bool, pub issue_comment_url: String, pub issue_events_url: String, pub issues_url: String, pub keys_url: String, pub labels_url: String, pub language: String, pub languages_url: String, pub license: Option<LicenseSimple>, pub master_branch: String, pub merges_url: String, pub milestones_url: String, pub mirror_url: String, pub name: String, pub network_count: i64, pub node_id: String, pub notifications_url: String, pub open_issues: i64, pub open_issues_count: i64, pub organization: Option<SimpleUser>, pub owner: Option<SimpleUser>, pub parent: Option<Repository>, pub permissions: Option<FullRepositoryPermissions>, pub private: bool, pub pulls_url: String, pub pushed_at: Option<DateTime<Utc>>, pub releases_url: String, pub security_and_analysis: Option<SecurityAnalysis>, pub size: i64, pub source: Option<Repository>, pub ssh_url: String, pub stargazers_count: i64, pub stargazers_url: String, pub statuses_url: String, pub subscribers_count: i64, pub subscribers_url: String, pub subscription_url: String, pub svn_url: String, pub tags_url: String, pub teams_url: String, pub temp_clone_token: String, pub template_repository: Option<Data>, pub topics: Vec<String>, pub trees_url: String, pub updated_at: Option<DateTime<Utc>>, pub url: String, pub visibility: String, pub watchers: i64, pub watchers_count: i64,
}
Expand description

Full Repository

Fields§

§allow_auto_merge: bool

Full Repository

§allow_merge_commit: bool

Full Repository

§allow_rebase_merge: bool

Full Repository

§allow_squash_merge: bool

Full Repository

§anonymous_access_enabled: bool

Full Repository

§archive_url: String§archived: bool§assignees_url: String§blobs_url: String§branches_url: String§clone_url: String§code_of_conduct: Option<CodeOfConductSimple>

Full Repository

§collaborators_url: String§comments_url: String§commits_url: String§compare_url: String§contents_url: String§contributors_url: String§created_at: Option<DateTime<Utc>>§default_branch: String§delete_branch_on_merge: bool

Full Repository

§deployments_url: String§description: String§disabled: bool§downloads_url: String§events_url: String§fork: bool§forks: i64§forks_count: i64§forks_url: String§full_name: String§git_commits_url: String§git_refs_url: String§git_tags_url: String§git_url: String§has_downloads: bool§has_issues: bool§has_pages: bool§has_projects: bool§has_wiki: bool§homepage: String§hooks_url: String§html_url: String§id: i64§is_template: bool

Full Repository

§issue_comment_url: String§issue_events_url: String§issues_url: String§keys_url: String§labels_url: String§language: String§languages_url: String§license: Option<LicenseSimple>§master_branch: String§merges_url: String§milestones_url: String§mirror_url: String§name: String§network_count: i64§node_id: String§notifications_url: String§open_issues: i64§open_issues_count: i64§organization: Option<SimpleUser>§owner: Option<SimpleUser>

Simple User

§parent: Option<Repository>

Full Repository

§permissions: Option<FullRepositoryPermissions>

Full Repository

§private: bool§pulls_url: String§pushed_at: Option<DateTime<Utc>>§releases_url: String§security_and_analysis: Option<SecurityAnalysis>§size: i64§source: Option<Repository>

Full Repository

§ssh_url: String§stargazers_count: i64§stargazers_url: String§statuses_url: String§subscribers_count: i64§subscribers_url: String§subscription_url: String§svn_url: String§tags_url: String§teams_url: String§temp_clone_token: String§template_repository: Option<Data>

Full Repository

§topics: Vec<String>

Full Repository

§trees_url: String§updated_at: Option<DateTime<Utc>>§url: String§visibility: String§watchers: i64§watchers_count: i64

Trait Implementations§

source§

impl Clone for FullRepository

source§

fn clone(&self) -> FullRepository

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FullRepository

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for FullRepository

source§

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 JsonSchema for FullRepository

source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
source§

fn json_schema(gen: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
source§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
source§

impl PartialEq<FullRepository> for FullRepository

source§

fn eq(&self, other: &FullRepository) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for FullRepository

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for FullRepository

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,