pub struct GithubRepositoryMetadata {
pub full_name: String,
pub html_url: String,
pub description: Option<String>,
pub language: Option<String>,
pub stargazers_count: u64,
pub forks_count: u64,
pub open_issues_count: u64,
pub license_spdx_id: Option<String>,
pub topics: Vec<String>,
}Fields§
§full_name: String§html_url: String§description: Option<String>§language: Option<String>§stargazers_count: u64§forks_count: u64§open_issues_count: u64§license_spdx_id: Option<String>§topics: Vec<String>Trait Implementations§
Source§impl Clone for GithubRepositoryMetadata
impl Clone for GithubRepositoryMetadata
Source§fn clone(&self) -> GithubRepositoryMetadata
fn clone(&self) -> GithubRepositoryMetadata
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 GithubRepositoryMetadata
impl Debug for GithubRepositoryMetadata
impl Eq for GithubRepositoryMetadata
Source§impl PartialEq for GithubRepositoryMetadata
impl PartialEq for GithubRepositoryMetadata
Source§fn eq(&self, other: &GithubRepositoryMetadata) -> bool
fn eq(&self, other: &GithubRepositoryMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GithubRepositoryMetadata
Auto Trait Implementations§
impl Freeze for GithubRepositoryMetadata
impl RefUnwindSafe for GithubRepositoryMetadata
impl Send for GithubRepositoryMetadata
impl Sync for GithubRepositoryMetadata
impl Unpin for GithubRepositoryMetadata
impl UnsafeUnpin for GithubRepositoryMetadata
impl UnwindSafe for GithubRepositoryMetadata
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.