pub struct RepoMeta {
pub name: String,
pub url: Option<String>,
pub slug: Option<String>,
pub branch: String,
pub first: i64,
pub last: i64,
pub total_commits: u64,
pub total_contributors: usize,
pub generated: String,
pub owner_avatar: Option<String>,
pub description: Option<String>,
}Fields§
§name: String§url: Option<String>§slug: Option<String>§branch: String§first: i64§last: i64§total_commits: u64§total_contributors: usize§generated: String§owner_avatar: Option<String>Owner/org avatar as a data URI, for the interactive page header.
description: Option<String>The GitHub repository description, when available.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RepoMeta
impl RefUnwindSafe for RepoMeta
impl Send for RepoMeta
impl Sync for RepoMeta
impl Unpin for RepoMeta
impl UnsafeUnpin for RepoMeta
impl UnwindSafe for RepoMeta
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