pub struct CCAssetCodeRepository {
pub url: String,
pub contributors: i32,
pub forks: i32,
pub stars: i32,
pub subscribers: i32,
pub open_issues: Option<i32>,
pub closed_issues: i32,
pub open_pull_requests: i32,
pub closed_pull_requests: i32,
}
Fields§
§url: String
The URL of the code repository used to retrieve social metrics.
contributors: i32
The number of contributors to the code repository.
forks: i32
The number of forks of the code repository.
stars: i32
The number of stars received by the code repository.
subscribers: i32
The number of subscribers to the code repository.
open_issues: Option<i32>
The number of open issues in the code repository.
closed_issues: i32
The number of closed issues in the code repository.
open_pull_requests: i32
The number of open pull requests in the code repository.
closed_pull_requests: i32
The number of closed pull requests in the code repository.
Trait Implementations§
Source§impl Debug for CCAssetCodeRepository
impl Debug for CCAssetCodeRepository
Source§impl<'de> Deserialize<'de> for CCAssetCodeRepository
impl<'de> Deserialize<'de> for CCAssetCodeRepository
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 CCAssetCodeRepository
impl RefUnwindSafe for CCAssetCodeRepository
impl Send for CCAssetCodeRepository
impl Sync for CCAssetCodeRepository
impl Unpin for CCAssetCodeRepository
impl UnwindSafe for CCAssetCodeRepository
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