pub struct GitRepositoryStats {
pub active_pull_requests_count: Option<i32>,
pub branches_count: Option<i32>,
pub commits_count: Option<i32>,
pub repository_id: Option<String>,
}Fields§
§active_pull_requests_count: Option<i32>§branches_count: Option<i32>§commits_count: Option<i32>§repository_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for GitRepositoryStats
impl Clone for GitRepositoryStats
Source§fn clone(&self) -> GitRepositoryStats
fn clone(&self) -> GitRepositoryStats
Returns a copy 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 GitRepositoryStats
impl Debug for GitRepositoryStats
Source§impl Default for GitRepositoryStats
impl Default for GitRepositoryStats
Source§fn default() -> GitRepositoryStats
fn default() -> GitRepositoryStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitRepositoryStats
impl<'de> Deserialize<'de> for GitRepositoryStats
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 GitRepositoryStats
impl PartialEq for GitRepositoryStats
Source§impl Serialize for GitRepositoryStats
impl Serialize for GitRepositoryStats
impl StructuralPartialEq for GitRepositoryStats
Auto Trait Implementations§
impl Freeze for GitRepositoryStats
impl RefUnwindSafe for GitRepositoryStats
impl Send for GitRepositoryStats
impl Sync for GitRepositoryStats
impl Unpin for GitRepositoryStats
impl UnwindSafe for GitRepositoryStats
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