pub struct Repository {Show 13 fields
pub forge: String,
pub url: String,
pub owner: String,
pub name: String,
pub description: Option<String>,
pub primary_language: Option<String>,
pub stars: Option<u64>,
pub forks: Option<u64>,
pub license: Option<String>,
pub archived: Option<bool>,
pub default_branch: Option<String>,
pub last_commit_date: Option<String>,
pub source_provider: String,
}Fields§
§forge: String§url: String§owner: String§name: String§description: Option<String>§primary_language: Option<String>§stars: Option<u64>§forks: Option<u64>§license: Option<String>§archived: Option<bool>§default_branch: Option<String>§last_commit_date: Option<String>§source_provider: 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 (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 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
impl Eq for Repository
Source§impl PartialEq for Repository
impl PartialEq for Repository
Source§impl Serialize for Repository
impl Serialize for Repository
impl StructuralPartialEq for Repository
Auto Trait Implementations§
impl Freeze for Repository
impl RefUnwindSafe for Repository
impl Send for Repository
impl Sync for Repository
impl Unpin for Repository
impl UnsafeUnpin 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