pub struct ProjectInsight {
pub total_issue_count: Option<i64>,
pub last_issue_update_time: Option<String>,
}
Expand description
ProjectInsight : Additional details about a project.
Fields§
§total_issue_count: Option<i64>
Total issue count.
last_issue_update_time: Option<String>
The last issue update time.
Implementations§
Source§impl ProjectInsight
impl ProjectInsight
Sourcepub fn new() -> ProjectInsight
pub fn new() -> ProjectInsight
Additional details about a project.
Trait Implementations§
Source§impl Clone for ProjectInsight
impl Clone for ProjectInsight
Source§fn clone(&self) -> ProjectInsight
fn clone(&self) -> ProjectInsight
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 ProjectInsight
impl Debug for ProjectInsight
Source§impl<'de> Deserialize<'de> for ProjectInsight
impl<'de> Deserialize<'de> for ProjectInsight
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 ProjectInsight
impl PartialEq for ProjectInsight
Source§impl Serialize for ProjectInsight
impl Serialize for ProjectInsight
impl StructuralPartialEq for ProjectInsight
Auto Trait Implementations§
impl Freeze for ProjectInsight
impl RefUnwindSafe for ProjectInsight
impl Send for ProjectInsight
impl Sync for ProjectInsight
impl Unpin for ProjectInsight
impl UnwindSafe for ProjectInsight
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