pub struct Repository {
pub id: Option<i64>,
pub project_id: Option<i64>,
pub name: Option<String>,
pub description: Option<String>,
pub artifact_count: Option<i64>,
pub pull_count: Option<i64>,
pub creation_time: Option<Option<String>>,
pub update_time: Option<String>,
}Fields§
§id: Option<i64>The ID of the repository
project_id: Option<i64>The ID of the project that the repository belongs to
name: Option<String>The name of the repository
description: Option<String>The description of the repository
artifact_count: Option<i64>The count of the artifacts inside the repository
pull_count: Option<i64>The count that the artifact inside the repository pulled
creation_time: Option<Option<String>>The creation time of the repository
update_time: Option<String>The update time of the repository
Implementations§
Source§impl Repository
impl Repository
pub fn new() -> Repository
Trait 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 · 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 Default for Repository
impl Default for Repository
Source§fn default() -> Repository
fn default() -> Repository
Returns the “default value” for a type. Read more
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
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 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