pub struct VersionUsageInCustomField {
pub field_name: Option<String>,
pub custom_field_id: Option<i64>,
pub issue_count_with_version_in_custom_field: Option<i64>,
}
Expand description
VersionUsageInCustomField : List of custom fields using the version.
Fields§
§field_name: Option<String>
The name of the custom field.
custom_field_id: Option<i64>
The ID of the custom field.
issue_count_with_version_in_custom_field: Option<i64>
Count of the issues where the custom field contains the version.
Implementations§
Source§impl VersionUsageInCustomField
impl VersionUsageInCustomField
Sourcepub fn new() -> VersionUsageInCustomField
pub fn new() -> VersionUsageInCustomField
List of custom fields using the version.
Trait Implementations§
Source§impl Clone for VersionUsageInCustomField
impl Clone for VersionUsageInCustomField
Source§fn clone(&self) -> VersionUsageInCustomField
fn clone(&self) -> VersionUsageInCustomField
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 VersionUsageInCustomField
impl Debug for VersionUsageInCustomField
Source§impl<'de> Deserialize<'de> for VersionUsageInCustomField
impl<'de> Deserialize<'de> for VersionUsageInCustomField
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 StructuralPartialEq for VersionUsageInCustomField
Auto Trait Implementations§
impl Freeze for VersionUsageInCustomField
impl RefUnwindSafe for VersionUsageInCustomField
impl Send for VersionUsageInCustomField
impl Sync for VersionUsageInCustomField
impl Unpin for VersionUsageInCustomField
impl UnwindSafe for VersionUsageInCustomField
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