pub struct VersionIssueCounts {
pub param_self: Option<String>,
pub issues_fixed_count: Option<i64>,
pub issues_affected_count: Option<i64>,
pub issue_count_with_custom_fields_showing_version: Option<i64>,
pub custom_field_usage: Option<Vec<VersionUsageInCustomField>>,
}
Expand description
VersionIssueCounts : Various counts of issues within a version.
Fields§
§param_self: Option<String>
The URL of these count details.
issues_fixed_count: Option<i64>
Count of issues where the fixVersion
is set to the version.
issues_affected_count: Option<i64>
Count of issues where the affectedVersion
is set to the version.
issue_count_with_custom_fields_showing_version: Option<i64>
Count of issues where a version custom field is set to the version.
custom_field_usage: Option<Vec<VersionUsageInCustomField>>
List of custom fields using the version.
Implementations§
Source§impl VersionIssueCounts
impl VersionIssueCounts
Sourcepub fn new() -> VersionIssueCounts
pub fn new() -> VersionIssueCounts
Various counts of issues within a version.
Trait Implementations§
Source§impl Clone for VersionIssueCounts
impl Clone for VersionIssueCounts
Source§fn clone(&self) -> VersionIssueCounts
fn clone(&self) -> VersionIssueCounts
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 VersionIssueCounts
impl Debug for VersionIssueCounts
Source§impl Default for VersionIssueCounts
impl Default for VersionIssueCounts
Source§fn default() -> VersionIssueCounts
fn default() -> VersionIssueCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VersionIssueCounts
impl<'de> Deserialize<'de> for VersionIssueCounts
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 VersionIssueCounts
impl PartialEq for VersionIssueCounts
Source§impl Serialize for VersionIssueCounts
impl Serialize for VersionIssueCounts
impl StructuralPartialEq for VersionIssueCounts
Auto Trait Implementations§
impl Freeze for VersionIssueCounts
impl RefUnwindSafe for VersionIssueCounts
impl Send for VersionIssueCounts
impl Sync for VersionIssueCounts
impl Unpin for VersionIssueCounts
impl UnwindSafe for VersionIssueCounts
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